-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.49 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.49 KB
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
{
"name": "ethics-eth-back-end",
"version": "1.0.0",
"description": "ethics eth backend ",
"main": "app.js",
"scripts": {
"dev": "nodemon --exec babel-node src/start.js NODE_ENV=development",
"build": "babel src --out-dir dist",
"start": "babel src --out-dir dist && nodemon -x 'node dist/app.js || touch dist/app.js'",
"prod": "yarn build && pm2 start dist/app.js --name 'ethics-net'",
"stop-prod": "pm2 stop ethics-net",
"restart-prod": "pm2 stop ethics-net",
"test": "jest --watch NODE_ENV=test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lupuselit/ethics-eth-back-end.git"
},
"author": "Emerson Lopes",
"license": "ISC",
"bugs": {
"url": "https://github.com/lupuselit/ethics-eth-back-end/issues"
},
"homepage": "https://github.com/lupuselit/ethics-eth-back-end#readme",
"dependencies": {
"@babel/polyfill": "^7.6.0",
"babel-polyfill": "^6.26.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.6.7",
"morgan": "^1.9.1",
"nodemailer": "^6.3.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-rc.1",
"@babel/core": "^7.0.0-rc.1",
"@babel/node": "^7.0.0-rc.1",
"@babel/preset-env": "^7.0.0-rc.1",
"jest": "^24.9.0",
"nodemon": "^1.19.1",
"supertest": "^4.0.2"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}