-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 981 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
39
40
41
{
"name": "deel-task",
"version": "0.1.0",
"private": true,
"dependencies": {
"body-parser": "^1.19.0",
"express": "4.17.1",
"sequelize": "^6.3.4",
"sqlite3": "^4.0.1"
},
"scripts": {
"start": "nodemon ./src/server.js",
"seed": "node ./scripts/seedDb.js",
"test": "node ./scripts/seedDb.js && jest"
},
"devDependencies": {
"concurrently": "4.1.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^45.0.1",
"jest": "^29.3.1",
"nodemon": "1.19.1",
"prettier": "^2.8.0",
"supertest": "^6.3.1"
},
"engines": {
"node": ">=10.16.3"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"engineStrict": true
}