-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.08 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
{
"name": "assessment-ts",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"start-part1": "nodemon --watch dist --exec node -- dist/part1/index.js",
"start-part2": "nodemon --watch dist --exec node -- dist/part2/bin/www",
"test-part1": "cross-env NODE_ENV=test mocha --require test/prepare --reporter reporter.js test/part1.test.js",
"test-part2": "cross-env NODE_ENV=test mocha --require test/prepare --reporter reporter.js test/part2.test.js",
"build": "tsc",
"watch-ts": "tsc -w"
},
"dependencies": {
"@types/express": "^4.17.7",
"express": "^4.17.1",
"http-errors": "^1.8.0",
"lodash": "^4.17.19"
},
"devDependencies": {
"@types/http-errors": "^1.8.0",
"@types/node": "^12.12.50",
"@typescript-eslint/parser": "^3.6.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-connect-middleware": "^0.3.1",
"cross-env": "^7.0.2",
"faker": "^4.1.0",
"mocha": "^8.0.1",
"mocha-prepare": "^0.1.0",
"nodemon": "^2.0.4",
"path-to-regexp": "^6.1.0",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"supertest": "^4.0.2",
"typescript": "^3.6.3"
}
}