-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.58 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.58 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "stretching-server",
"version": "1.0.0",
"description": "spot pointing by keyword",
"main": "app.js",
"scripts": {
"test": "node app.js",
"dev": "cross-env NODE_ENV=development npx prettier --write 'src/**/*.js' && node app.js",
"prepare": "husky install",
"lint": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/userGuideLock/stretching-spot-Backend.git"
},
"keywords": [
"spot"
],
"author": "Hermi",
"license": "ISC",
"bugs": {
"url": "https://github.com/userGuideLock/stretching-spot-Backend/issues"
},
"homepage": "https://github.com/userGuideLock/stretching-spot-Backend#readme",
"dependencies": {
"@tensorflow/tfjs-node": "^4.20.0",
"axios": "^1.7.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-asyncify": "^3.1.0",
"firebase": "^10.12.4",
"firebase-admin": "^12.3.0",
"mariadb": "^3.3.1",
"moment-timezone": "^0.5.45",
"node-cron": "^3.0.3",
"node-schedule": "^2.1.1",
"openai": "^4.53.0",
"pickleparser": "^0.2.1",
"sequelize": "^6.37.3"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.7.0",
"cross-env": "^7.0.3",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.8.0",
"husky": "^6.0.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
}
}