generated from stanleygomes/nodevader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.54 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
{
"name": "nodevader",
"version": "0.0.1",
"description": "A Teenage Mutant Node Boilerplate",
"main": "./src/index.js",
"scripts": {
"lint": "eslint .",
"dev": "NODE_ENV=development eslint . && cd ./src && mocha && cd .. && nodemon src/index.js",
"prd": "NODE_ENV=production eslint . && pm2 start src/config/ecosystem.config.js --no-daemon",
"test": "NODE_ENV=test eslint . && cd ./src && mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/stanleygomes/nodevader"
},
"author": "Stanley Gomes",
"license": "MIT",
"bugs": {
"url": "https://github.com/stanleygomes/nodevader"
},
"homepage": "https://github.com/stanleygomes/nodevader",
"dependencies": {
"@google-cloud/storage": "^4.1.3",
"@hapi/joi": "^16.1.7",
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"firebase-admin": "^8.9.0",
"helmet": "^3.21.2",
"i18n": "^0.8.3",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.6",
"moment": "^2.24.0",
"multer": "^1.4.2",
"mustache": "^3.2.1",
"mysql": "^2.17.1",
"nightmare": "^3.0.2",
"nodemailer": "^6.3.1",
"winston": "^3.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^6.1.4"
}
}