-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 835 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
{
"name": "sd-0x-project-talker-manager",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --runInBand --verbose --forceExit",
"posttest": "cp tests/seed.json talker.json",
"restore": "cp tests/seed.json talker.json",
"start": "node index.js",
"dev": "nodemon index.js --ignore 'talker.json'",
"lint": "eslint --no-inline-config --no-error-on-unmatched-pattern -c .eslintrc.json ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "1.19.0",
"crypto-js": "4.0.0",
"express": "4.17.1",
"express-rescue": "1.1.30",
"joi": "^17.6.0"
},
"devDependencies": {
"eslint": "6.8.0",
"eslint-config-trybe-backend": "1.0.1",
"frisby": "2.1.3",
"jest": "26.6.1",
"nodemon": "2.0.15"
}
}