-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.6 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
{
"name": "ranking-app",
"version": "1.0.1",
"description": "IoTCrawler Ranking app",
"license": "Apache-2.0",
"author": "Stefan Bischof",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"compile": "ts-node build.ts && tsc",
"dev": "nodemon server/index.ts | pino-pretty",
"dev:debug": "nodemon --exec 'node -r ts-node/register --inspect-brk' server/index.ts | pino-pretty",
"lint": "eslint ./server/**/*.ts",
"test": "mocha --exit --require ts-node/register --colors test/**/*.ts",
"coverage": "nyc npm run test",
"test:debug": "mocha --inspect-brk test/**/*.ts --exit"
},
"repository": {
"type": "git",
"url": "https://gitlab.iotcrawler.net/ranking/ranking.git"
},
"dependencies": {
"axios": "^0.21.0",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-openapi-validator": "^3.17.2",
"http-status-codes": "^2.1.4",
"jsonpath": "^1.0.2",
"pino": "^6.7.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.33",
"@types/chai": "^4.2.14",
"@types/express": "^4.17.8",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.6",
"@types/pino": "^6.3.3",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"eslint": "^7.12.1",
"mocha": "^8.2.0",
"nodemon": "^2.0.6",
"nyc": "^15.1.0",
"pino-pretty": "^4.3.0",
"shelljs": "^0.8.4",
"supertest": "^6.0.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
}
}