-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.7 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.7 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
62
63
{
"name": "kuics-backend",
"version": "1.0.0",
"description": "KUICS_backend",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production&& node ./src/index.js",
"start:dev": "cross-env NODE_ENV=development&& nodemon ./src/index.js",
"prod": "cross-env NODE_ENV=production&& pm2 start ./src/index.js",
"test": "eslint ./src/**.*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BeLeap/KUICS_backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BeLeap/KUICS_backend/issues"
},
"homepage": "https://github.com/BeLeap/KUICS_backend#readme",
"devDependencies": {
"chai": "^4.3.0",
"chai-http": "^4.3.0",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.3.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1"
},
"dependencies": {
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"express": "^4.17.1",
"express-swagger-generator": "^1.1.17",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"mysql2": "^2.2.5",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.5.1",
"sequelize": "^6.5.0",
"pm2": "^4.5.4",
"swagger-jsdoc": "^6.0.6",
"swagger-ui-express": "^4.1.6",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.4.2",
"winston-syslog": "^2.4.4"
},
"directories": {
"doc": "docs"
}
}