-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.96 KB
/
package.json
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
62
63
{
"name": "CSEY-Server",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --build",
"clean": "tsc --build --clean",
"start:dev": "node createFolders.js && cross-env NODE_ENV=development npx nodemon",
"dev:prod": "npm run clean && npm run build && node createFolders.js && cross-env NODE_ENV=test node dist/index.js",
"start:prod": "npm run build && node createFolders.js && lsof -i :7070 | awk 'NR!=1 {print $2}' | xargs -r kill && nohup cross-env NODE_ENV=production node dist/index.js > ./app.log 2>&1 &"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SSU-VISLAB/CSEY-Server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SSU-VISLAB/CSEY-Server/issues"
},
"homepage": "https://github.com/SSU-VISLAB/CSEY-Server#readme",
"dependencies": {
"@adminjs/express": "^6.1.0",
"@adminjs/sequelize": "^4.1.1",
"@adminjs/upload": "^4.0.2",
"adminjs": "^7.8.1",
"axios": "^1.6.7",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.3",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.9.2",
"node-schedule": "^2.1.1",
"redis": "^4.6.13",
"sequelize": "^6.37.1"
},
"devDependencies": {
"@adminjs/design-system": "^4.1.1",
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/mysql2": "github:types/mysql2",
"@types/node": "^20.12.12",
"@types/node-schedule": "^2.1.6",
"@types/validator": "^13.11.9",
"@types/cors": "^2.8.17",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"nodemon": "^3.1.0",
"ts-dotenv": "^0.9.1",
"typescript": "^5.4.5",
"ts-node": "^10.9.2",
"tslib": "^2.6.2"
}
}