-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.44 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "phonebook-api",
"version": "0.4.0",
"description": "A simple phonebook API that will store contacts for a user",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"test": "mocha",
"start": "node build/index.js",
"heroku-postbuild": "npm run build",
"watch:dev": "nodemon -w src/index.ts",
"coverage": "nyc --reporter=lcov mocha",
"lint": "tslint -c tslint.json 'src/**/*.ts'"
},
"keywords": [
"Phonebook",
"API",
"Express"
],
"author": "Alex Pickering",
"license": "ISC",
"dependencies": {
"uuid": "3.4.0",
"dotenv": "8.2.0",
"bunyan": "1.8.12",
"helmet": "3.21.3",
"mongodb": "3.5.3",
"express": "4.17.1",
"bunyan-loggly": "1.4.1",
"express-http-context": "1.2.3"
},
"devDependencies": {
"@types/uuid": "3.4.7",
"@types/chai": "4.2.10",
"@types/mocha": "7.0.2",
"@types/sinon": "7.5.2",
"@types/bunyan": "1.8.6",
"@types/helmet": "0.0.45",
"@types/express": "4.17.2",
"@types/mongodb": "3.3.16",
"@types/sinon-chai": "3.2.3",
"@types/chai-as-promised": "7.1.2",
"nyc": "15.0.0",
"chai": "4.2.0",
"mocha": "7.1.0",
"sinon": "9.0.1",
"tslint": "6.1.0",
"ts-node": "8.6.2",
"nodemon": "2.0.2",
"typescript": "3.7.5",
"sinon-chai": "3.5.0",
"node-mocks-http": "1.8.1",
"chai-as-promised": "7.1.1",
"tslint-config-standard": "9.0.0"
},
"engines": {
"node": "12.x"
}
}