-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 996 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
42
{
"name": "buchi-nodejs",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"test": "cross-env NODE_ENV=test jest --watch --testTimeout=10000 --detectOpenHandles"
},
"dependencies": {
"@petfinder/petfinder-js": "^1.0.6",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^16.0.0",
"express": "~4.16.1",
"formidable": "^2.0.1",
"generate-password": "^1.7.0",
"http-errors": "~1.6.3",
"jade": "^0.29.0",
"lodash": "^4.17.21",
"mocha": "^9.2.2",
"moment": "^2.29.1",
"mongoose": "^6.2.7",
"morgan": "~1.9.1",
"multer": "^1.4.4",
"nodemon": "^2.0.15",
"petfinder": "^0.1.1"
},
"devDependencies": {
"cross-env": "^7.0.3",
"jest": "^27.5.1",
"supertest": "^6.2.2"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}