-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
61 lines (61 loc) · 1.64 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
{
"name": "nodevader",
"version": "0.0.1",
"private": true,
"description": "Come to the node side",
"main": "./src/index.js",
"scripts": {
"start": "node src/index.js",
"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",
"migrate": "node src/migrate.js",
"lint": "eslint .",
"test": "NODE_ENV=test eslint . && cd ./src && mocha"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"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",
"engines": {
"node": ">=12"
},
"dependencies": {
"@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",
"date-fns": "^2.21.3",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"helmet": "^3.21.2",
"i18n": "^0.8.3",
"jsonwebtoken": "^8.5.1",
"knex": "^0.95.11",
"multer": "^1.4.4",
"mustache": "^4.2.0",
"nodemailer": "^6.7.2",
"postgrator": "^4.1.1",
"winston": "^3.3.3"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^8.2.1"
}
}