-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.78 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": "amesride-api",
"version": "0.0.1",
"license": "GNU3",
"description": "Backend to power the Ames Ride app.",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"test": "cross-env NODE_ENV=test TZ=UTC ts-mocha 'src/spec/**/*.spec.ts'",
"test:coverage": "cross-env NODE_ENV=test TZ=UTC nyc --reporter=html ts-mocha 'src/spec/**/*.ts'",
"lint": "eslint .",
"start": "node build/index.js",
"dev": "npm run build && node build/index.js"
},
"keywords": [
"transportation",
"Iowa State University",
"bus",
"CyRide",
"Ames",
"Iowa",
"GTFS"
],
"author": "Demers, Patrick",
"dependencies": {
"adm-zip": "^0.5.10",
"csv-parser": "^3.0.0",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"gtfs-realtime-bindings": "^1.1.1",
"long": "^5.2.1",
"mock-fs": "^5.2.0",
"object-hash": "^3.0.0",
"prom-client": "^14.1.1",
"socket.io": "^4.5.4",
"source-map-loader": "^4.0.1",
"ts-loader": "^9.4.2",
"unleash-client": "^3.19.0",
"webpack": "^5.88.2",
"winston": "^3.8.2",
"winston-loki": "^6.0.6"
},
"devDependencies": {
"@types/adm-zip": "^0.5.0",
"@types/chai": "^4.3.4",
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.1",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"mocha-each": "^2.0.1",
"msw": "^1.2.1",
"nyc": "^15.1.0",
"prettier": "2.8.3",
"sinon": "^15.0.1",
"socket.io-mock": "^1.3.0",
"ts-mocha": "^10.0.0",
"typescript": "^4.9.4"
}
}