This repository has been archived by the owner on Nov 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.06 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
68
69
70
{
"private": true,
"name": "atom",
"version": "1.13.1",
"description": "",
"main": "dist/app.js",
"author": "come25136",
"license": "MPL-2.0",
"scripts": {
"build": "tsc",
"start": "typeorm migration:run && node .",
"lint": "eslint --fix **/*.ts",
"test": "typeorm schema:drop && typeorm migration:run && cross-env NODE_ENV=test mocha dist/test --recursive && typeorm schema:drop",
"db:migration:generate": "typeorm migration:generate -n Initialize"
},
"dependencies": {
"@come25136/gtfs": "^1.4.0",
"@hapi/joi": "^16.1.8",
"@hapi/joi-date": "^2.0.1",
"adm-zip": "^0.4.13",
"config": "^3.2.4",
"cors": "^2.8.5",
"env-var": "^5.2.0",
"express": "^4.17.1",
"geolib": "^3.2.0",
"http-errors": "^1.7.3",
"lodash": "^4.17.15",
"moment-timezone": "^0.5.27",
"mysql2": "^2.0.2",
"neat-csv": "^5.1.0",
"protobufjs": "^6.8.8",
"socket.io": "^2.3.0",
"superagent": "^5.1.2",
"swagger-jsdoc": "^3.5.0",
"swagger-ui-express": "^4.1.2",
"typeorm": "^0.2.21",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/adm-zip": "^0.4.32",
"@types/chai": "^4.2.7",
"@types/config": "0.0.36",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/hapi__joi": "^16.0.4",
"@types/http-errors": "^1.6.3",
"@types/lodash": "^4.14.149",
"@types/mocha": "^5.2.7",
"@types/moment-timezone": "^0.5.12",
"@types/morgan": "^1.7.37",
"@types/neat-csv": "^4.0.0",
"@types/node": "^12.12.17",
"@types/socket.io": "^2.1.4",
"@types/socket.io-client": "^1.4.32",
"@types/superagent": "^4.1.4",
"@types/supertest": "^2.0.8",
"@types/swagger-jsdoc": "^3.0.2",
"@types/swagger-ui-express": "^4.1.0",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"chai": "^4.2.0",
"cross-env": "^6.0.3",
"eslint": "^6.7.2",
"eslint-plugin-simple-import-sort": "^5.0.0",
"mocha": "^6.2.2",
"supertest": "^4.0.2",
"typescript": "^3.7.3"
}
}