-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.25 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "sinamon-backend",
"version": "0.1.0",
"scripts": {
"start": "cross-env NODE_ENV=development nodemon",
"build": "tsc",
"start:production": "cross-env NODE_ENV=production node ./dist/server.js",
"lint": "eslint src/**/*.ts",
"makecode": "ts-node bin/makeActivationCode.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swjb-sinamon/sinamon-backend.git"
},
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/swjb-sinamon/sinamon-backend/issues"
},
"dependencies": {
"axios": "0.21.2",
"bcrypt": "^5.0.0",
"connect-redis": "5.1.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dayjs": "1.10.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "5.2.5",
"express-session": "^1.17.1",
"express-validator": "^6.6.1",
"fxjs": "0.21.1",
"helmet": "4.4.1",
"json2csv": "^5.0.6",
"log4js": "^6.3.0",
"node-cron": "^2.0.3",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"playwright": "^1.10.0",
"redis": "^3.1.1",
"school-kr": "3.1.2",
"sequelize": "6.5.0",
"swagger-jsdoc": "^6.0.2",
"swagger-ui-express": "^4.1.6",
"uuid": "^8.3.0"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/connect-redis": "0.0.16",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.7",
"@types/express": "4.17.11",
"@types/express-rate-limit": "5.1.1",
"@types/express-session": "1.17.3",
"@types/fxjs": "^0.15.0",
"@types/json2csv": "^5.0.3",
"@types/node": "14.14.25",
"@types/node-cron": "^2.0.3",
"@types/passport": "1.0.6",
"@types/passport-local": "^1.0.33",
"@types/redis": "^2.8.28",
"@types/sequelize": "^4.28.9",
"@types/swagger-jsdoc": "^6.0.0",
"@types/swagger-ui-express": "^4.1.2",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "4.15.0",
"@typescript-eslint/parser": "4.15.0",
"chalk": "^4.1.0",
"cross-env": "^7.0.3",
"eslint": "7.19.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.0",
"mysql2": "^2.1.0",
"nodemon": "2.0.7",
"prettier": "^2.0.5",
"ts-node": "^9.0.0",
"typescript": "4.1.3"
}
}