-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
68 lines (68 loc) · 1.9 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
{
"name": "webdevstudios-examiner",
"version": "0.1.0",
"description": "Online-exam",
"author": "Quang Dat Pham <[email protected]>",
"keywords": [
"examiner",
"online-exam"
],
"license": "ISC",
"engines": {
"node": ">= 10.15.3"
},
"dependencies": {
"@hapi/joi": "^15.1.0",
"app-root-path": "^2.2.1",
"await-to-js": "^2.1.1",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"dotenv": "^8.0.0",
"express": "^4.17.0",
"express-json-views": "^0.2.0",
"helmet": "^3.18.0",
"http-status": "^1.3.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"mongodb": "^3.2.6",
"morgan": "^1.9.1",
"node-pre-gyp": "^0.13.0",
"classnames": "^2.2.6",
"prop-types": "^15.7.2",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"react-router-dom": "^5.0.0",
"react-scripts": "^3.1.1",
"spdy": "^4.0.0",
"winston": "^3.2.1"
},
"devDependencies": {
"console.table": "^0.10.0",
"eslint": "^6.1.0",
"mocha": "^6.1.4",
"raml2html": "^7.3.0",
"should": "^13.2.3",
"supertest": "^4.0.2"
},
"scripts": {
"start": "NODE_ENV=production node ./server/index.js",
"client:start": "react-scripts start",
"client:build": "react-scripts build",
"client:test": "react-scripts test",
"client:eject": "react-scripts eject",
"server:dev": ". ./server/development.env.sh && nodemon --inspect server/index.js",
"server:dev:chrome-debug": ". ./server/development.env.sh && nodemon --inspect-brk ./server/index.js",
"server:test": ". ./server/test.env.sh && NODE_ENV=test mocha ./server/test/**/*.test.js ./server/test/*.test.js",
"server:raml2html": "raml2html ./server/raml/api.raml > ./server/temp/api.html"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}