-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "server",
"version": "1.0.0",
"description": "Template node server",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"node:env": "cross-env NODE_ENV=development",
"node:dev": "nodemon index.js",
"start": "concurrently \"npm run node:env\" \"npm run node:dev\"",
"build": "cross-env NODE_ENV=production node build/index.js",
"lint": "eslint ./"
},
"keywords": [
"tempate",
"node",
"swagger",
"server"
],
"author": "Nikolay Matyasov",
"license": "ISC",
"devDependencies": {
"nodemon": "^2.0.15"
},
"dependencies": {
"axios": "^0.24.0",
"concurrently": "^7.0.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^4.17.1",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^6.3.0",
"helmet": "^5.0.1",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.3.0",
"xss-clean": "^0.1.1"
}
}