-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.39 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
{
"name": "desquared-online-delivery",
"version": "0.0.1",
"main": "dist/index.js",
"author": "Spyros Mandekis",
"private": true,
"engines": {
"node": ">=10"
},
"scripts": {
"clean": "rm -rf ./dist ./public",
"docs": "mkdir -p public && aglio -i blueprint.apib -o public/index.html",
"test": "NODE_ENV=test CONFIG_FILE=test/config.json mocha -r ts-node/register --timeout 10000 test/**/* --exit",
"coverage": "nyc $npm_execpath test",
"compile": "tsc",
"build": "$npm_execpath run clean && $npm_execpath run compile",
"start": "NODE_ENV=development nodemon -w src -e ts --exec 'ts-node src/index.ts'"
},
"dependencies": {
"debug": "^4.1.1",
"express": "^4.17.1",
"express-validator": "^6.4.0",
"got": "^10.7.0",
"lru-cache": "^5.1.1",
"moment": "^2.24.0",
"mongoose": "^5.9.7",
"nconf": "^0.10.0",
"node-schedule": "^1.3.2"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/express": "^4.17.6",
"@types/got": "^9.6.9",
"@types/lru-cache": "^5.1.0",
"@types/mocha": "^7.0.2",
"@types/mongodb": "^3.5.5",
"@types/mongoose": "^5.7.10",
"@types/nconf": "^0.10.0",
"@types/node": "^13.11.1",
"aglio": "^2.3.0",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"nodemon": "^2.0.3",
"nyc": "^15.0.1",
"supertest": "^4.0.2",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
}
}