-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 968 Bytes
/
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
{
"name": "nodex",
"version": "1.0.0",
"description": "",
"main": "src/main.js",
"scripts": {
"dev": "nodemon src/main.js",
"dev:pm2": "pm2-dev ecosystem.config.js --no-daemon --name \"nodex-app\"",
"prod:pm2": "pm2-runtime start ecosystem.config.js --env production",
"start:pm2": "pm2 start ecosystem.config.js",
"del:pm2": "pm2 delete ecosystem.config.js"
},
"keywords": [],
"author": "<[email protected]>",
"license": "ISC",
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"printWidth": 80,
"semi": true,
"jsxSingleQuote": true,
"singleQuote": true,
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "always"
},
"devDependencies": {
"nodemon": "^2.0.20",
"pm2": "^5.2.0",
"prettier": "^2.7.1"
},
"dependencies": {
"avatar-builder": "^1.0.2",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"node-fetch": "^2.6.7"
}
}