-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.13 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
{
"name": "alerts-feedback",
"version": "0.0.2",
"description": "API for the feedback endpoint",
"main": "src/start.js",
"bin": "src/start.js",
"scripts": {
"start": "node src/start.js",
"build": "tsc",
"watch": "nodemon src/start.ts",
"test": "jest --coverage",
"alerts-feedback": "nodemon src/scripts/alerts-feedback.ts",
"view:cov": "serve coverage/lcov-report",
"clean": "rm -rf coverage src/**/*.js src/**/*.map",
"lint": "eslint '*/**/*.ts'",
"lint:fix": "eslint '*/**/*.ts' --fix",
"test:watch": "jest --coverage --watchAll",
"view:coverage": "serve coverage/lcov-report",
"detect": "jest --runInBand --detectOpenHandles"
},
"author": "UrbanOS",
"dependencies": {
"@turf/turf": "^6.5.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^25.2.3",
"@types/json2csv": "^5.0.3",
"@types/node": "^14.17.15",
"@types/redis": "^2.8.32",
"@types/source-map-support": "^0.5.4",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.1",
"@types/ws": "^8.2.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-robots-txt": "^1.0.0",
"redis": "^3.1.2",
"source-map-support": "^0.5.20",
"typescript": "^3.9.10",
"uuid": "^8.3.2",
"ws": "^8.2.2"
},
"devDependencies": {
"@types/mock-fs": "^4.13.1",
"@types/redis-mock": "^0.17.0",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.1",
"jest": "^26.6.3",
"jest-each": "^27.3.1",
"jest-junit": "^13.0.0",
"json2csv": "^5.0.6",
"mock-fs": "^5.1.1",
"nodemon": "^2.0.12",
"prettier": "^2.4.0",
"redis-mock": "^0.56.3",
"serve": "^13.0.2",
"supertest": "^6.1.6",
"ts-jest": "^26.5.6",
"ts-node": "^8.10.2",
"wait-for-expect": "^3.0.2"
}
}