forked from djunicode/masters-information-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.75 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
{
"name": "masters-information-portal",
"version": "0.1.0",
"description": "DJSCE Master's Information Portal",
"author": "DJ Unicode",
"license": "MIT",
"private": false,
"main": "index.js",
"scripts": {
"build": "npm run build-backend && npm run build-frontend",
"build-backend": "npm install && npm run doc",
"build-frontend": "cd ./webapp && npm install && npm run build && cd ..",
"start": "node index.js",
"start:dev": "nodemon index.js",
"test": "mocha --timeout 50000 --exit",
"doc": "npm run apidoc && npm run jsdoc",
"apidoc": "apidoc -i controllers/ -i infra/ -o docs/routes",
"jsdoc": "jsdoc -c jsdoc.json",
"lint-fix": "eslint . && cd ./webapp && npm run lint-fix",
"deploy": "sh build.sh"
},
"dependencies": {
"apidoc": "^0.20.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chalk": "^4.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"express-rate-limit": "^5.1.1",
"helmet": "^3.22.0",
"jsdoc": "^3.6.3",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"mongoose": "^5.8.10",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"path": "^0.12.7",
"socket.io": "^2.3.0",
"validator": "^12.2.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/express": "^4.17.3",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"mocha": "^7.1.0",
"nodemon": "^2.0.2",
"prettier": "^2.0.5"
},
"keywords": []
}