forked from YeongEunLee/CherishServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.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
{
"name": "cherishserver",
"version": "1.0.0",
"description": "cherish Server",
"main": "src/server.js",
"scripts": {
"start": "nodemon",
"start:production": "node ./dist/server.js",
"api": "apidoc -i src/ -o apidoc",
"babel-version": "babel --version",
"lint": "eslint src/**/*.js",
"lint:fix": "yarn lint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TeamCherish/CherishServer.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TeamCherish/CherishServer/issues"
},
"homepage": "https://github.com/TeamCherish/CherishServer#readme",
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^2.0.6",
"prettier": "^2.1.2",
"sequelize-cli": "^6.2.0"
},
"dependencies": {
"dayjs": "^1.10.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.9.0",
"helmet": "^4.4.1",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.2.5",
"request": "^2.88.2",
"sequelize": "^6.3.5",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0"
}
}