forked from CityOfPhiladelphia/eng-interview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 967 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
{
"name": "derrick-interview-submission",
"version": "1.0.0",
"description": "This is the dependecies for Derrick's interview submission",
"main": "server.js",
"scripts": {
"test": "jest --testTimeout=10000",
"start": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/derrickdso/eng-interview.git"
},
"author": "Derrick Dieso",
"license": "ISC",
"bugs": {
"url": "https://github.com/derrickdso/eng-interview/issues"
},
"homepage": "https://github.com/derrickdso/eng-interview#readme",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"faker": "^4.1.0",
"fs": "0.0.1-security",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.9.1",
"nodemon": "^2.0.2"
},
"devDependencies": {
"jest": "^25.1.0",
"supertest": "^4.0.2"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}