forked from Alontal/NodeJS-API-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.11 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": "node_server",
"version": "1.0.0",
"description": "Starter node server",
"main": "server.js",
"scripts": {
"echo": "cross-env-shell \"echo NODE_ENV = $NODE_ENV\"",
"start": "cross-env-shell NODE_ENV=debug \"npm run test && npm run echo && node server.js\"",
"pm2:start": "cross-env NODE_ENV=production pm2 start server.js",
"pm2:start-watch": "cross-env NODE_ENV=production pm2 start server.js --watch ",
"pm2:start-cluster": "cross-env NODE_ENV=production pm2 start server.js -i 2 --watch",
"test": "jest",
"test:lint": "cross-env-shell \"echo $NODE_ENV && eslint ./\"",
"lint": "NODE_ENV=debug eslint ./",
"test:test": "echo \"Error: no specified\" && exit 1",
"docker:build": "docker-compose up --build",
"docker:up": "docker-compose up"
},
"repository": {
"type": "git",
"url": "https://github.com/Alontal/NodeJS-api"
},
"author": "Alon Tal",
"license": "MIT",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"email-templates": "^5.1.0",
"express": "^4.17.1",
"express-rate-limit": "^5.0.0",
"express-session": "^1.16.2",
"helmet": "^3.18.0",
"jest": "^24.8.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.11",
"lusca": "^1.6.1",
"mkdirp": "^0.5.1",
"moment": "^2.24.0",
"mongoose": "^5.6.0",
"node-schedule": "^1.3.2",
"nodemailer": "^6.2.1",
"path": "^0.12.7",
"promise-mysql": "^4.0.4",
"pug": "^2.0.4",
"request": "^2.88.0",
"swagger-jsdoc": "^3.2.9",
"swagger-ui-express": "^4.0.6",
"uuid": "^3.3.2",
"validator": "^11.0.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.9.0"
},
"devDependencies": {
"cross-env": "^5.2.0",
"eslint": "^6.0.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-security": "^1.4.0",
"nodemon": "^1.19.1",
"prettier": "^1.18.2",
"mongodb-memory-server": "^5.1.5"
}
}