-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.04 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
60
61
62
63
64
65
66
67
{
"name": "deepconsulting",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/*",
"lint": "tslint --fix -c tslint.json -p tsconfig.json",
"tsc": "tsc",
"build": "npm-run-all clean tsc",
"dev:start": "npm-run-all build start",
"dev:watch": "nodemon --watch src -e ts --exec npm run dev:start",
"dev": "npm-run-all dev:watch",
"lint:and:dev": "npm-run-all lint dev:watch",
"start": "node .",
"unit:test": "mocha --recursive -r ts-node/register \"src/app/**/*.spec.ts\"",
"integration:test": "mocha --recursive -r ts-node/register \"src/integration-tests/**/*.spec.ts\"",
"test": "npm-run-all unit:test integration:test",
"app:script:add-item":"ts-node ./src/app/scripts/add-item.ts",
"app:script:items-purger":"ts-node ./src/app/scripts/items-purger.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"http-errors": "^2.0.0",
"joi": "^17.5.0",
"lodash": "^4.17.21",
"mysql": "^2.18.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.4",
"@types/chai-http": "^4.2.0",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/http-errors": "^1.8.1",
"@types/joi": "^17.2.3",
"@types/lodash": "^4.14.178",
"@types/mocha": "^9.0.0",
"@types/mysql": "^2.15.20",
"@types/node": "^16.11.17",
"@types/sinon": "^10.0.6",
"@types/sinon-chai": "^3.2.7",
"@types/sinon-test": "^2.4.3",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"mocha": "^9.1.3",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"proxyrequire": "^1.0.21",
"rimraf": "^3.0.2",
"sinon": "^12.0.1",
"sinon-chai": "^3.7.0",
"sinon-test": "^3.1.1",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"typescript": "^4.5.4"
}
}