-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"name": "starter-project",
"version": "1.0.0",
"description": "starter project",
"main": "server.js",
"scripts": {
"test": "export NODE_ENV=testing || SET \"NODE_ENV=testing\" && jest -i --silent",
"test:coverage": "export NODE_ENV=testing || SET \"NODE_ENV=testing\" && jest -i --coverage --silent",
"start:dev": "nodemon server.js",
"start:prod": "NODE_ENV=production nodemon -L server"
},
"author": "m7moudGadallah",
"license": "ISC",
"dependencies": {
"colors": "^1.4.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.0.1",
"helmet": "^7.0.0",
"hpp": "^0.2.3",
"morgan": "^1.10.0",
"nodemon": "^3.0.1",
"supertest": "^6.3.3",
"xss-clean": "^0.1.4"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^20.5.1",
"eslint": "^8.47.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.4.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.7.0",
"prettier": "^2.8.4"
},
"engines": {
"node": ">=14.0.0"
}
}