-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 876 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
{
"name": "shire-app",
"version": "1.0.0",
"description": "Shire App Implementation",
"main": "index.js",
"scripts": {
"start": "node .bin/www",
"watch": "nodemon --ignore '*.json *.log' --exec 'npm start'",
"test": "jest --verbose",
"test-detect": "jest --detectOpenHandles",
"test-coverage": "jest --coverage --verbose",
"test-watch": "jest --verbose --watch"
},
"author": "Cagan Sevencan <cagansvncn@gmail.com>",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.1",
"circular-json": "^0.5.9",
"colors": "1.4.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"flatted": "^3.2.7",
"mongoose": "^6.9.1",
"mongoose-autopopulate": "^0.17.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"jest": "^29.4.3",
"pug": "^3.0.2",
"pug-plain-loader": "^1.1.0",
"supertest": "^6.3.3"
}
}