-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "visitor-profiler",
"version": "1.0.0",
"description": "",
"main": "dist/index.mjs",
"scripts": {
"start": "npx tsc && npm run build-frontend && node dist/index.mjs",
"build-frontend": "cd src/views && npm i && npm run build ",
"test": "echo \"Error: no test specified\" && exit 1",
"seed": "node dist/seeds/index.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antieatingactivist/Visitor-Profiler.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/antieatingactivist/Visitor-Profiler/issues"
},
"homepage": "https://github.com/antieatingactivist/Visitor-Profiler#readme",
"dependencies": {
"axios": "^1.1.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mysql2": "^2.3.3",
"sequelize": "^6.25.3"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.17",
"@types/node": "^18.11.8",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"eslint-config-react-typescript": "^1.0.10",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-config-xo": "^0.42.0",
"eslint-config-xo-typescript": "^0.53.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.4.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.10",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
}
}