-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.26 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
{
"name": "campusstore",
"version": "1.0.0",
"main": "app.js",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=production node server.js",
"dev": "cross-env NODE_ENV=development nodemon server.js",
"dev-test": "cross-env NODE_ENV=test jest --runInBand --verbose false --watch",
"test": "cross-env NODE_ENV=test jest --runInBand",
"lint": "eslint .",
"coverage": "cross-env NODE_ENV=test jest --coverage --runInBand"
},
"dependencies": {
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.6",
"mongoose-unique-validator": "^2.0.3"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^1.7.0",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"supertest": "^6.1.3"
}
}