-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 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": "mbta-graphql",
"version": "1.0.0",
"description": "A graphql wrapper for the open mbta REST api",
"main": "index.js",
"scripts": {
"start:dev": "nodemon src/server.ts",
"start:debug": "nodemon --inspect src/server.ts",
"test": "jest --watch"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/eventsource": "^1.1.2",
"@types/jest": "^25.2.3",
"@types/lodash.chunk": "^4.2.6",
"@types/lodash.groupby": "^4.6.6",
"@types/lodash.memoize": "^4.1.6",
"@types/lodash.merge": "^4.6.6",
"@types/lodash.throttle": "^4.1.6",
"@types/mapbox__polyline": "^1.0.0",
"apollo-server-testing": "^2.16.0",
"babel-jest": "^25.5.1",
"jest": "^25.5.4",
"jsonapi-typescript": "^0.1.3",
"nodemon": "^2.0.4",
"ts-jest": "^25.5.1",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typescript": "^3.9.7"
},
"dependencies": {
"@mapbox/polyline": "^1.1.1",
"apollo-datasource-rest": "^0.8.1",
"apollo-server": "^2.16.0",
"dataloader": "^2.0.0",
"dotenv": "^8.2.0",
"eventsource": "^1.0.7",
"graphql": "^15.3.0",
"lodash.chunk": "^4.2.0",
"lodash.groupby": "^4.6.0",
"lodash.memoize": "^4.1.2",
"lodash.merge": "^4.6.2",
"lodash.throttle": "^4.1.1"
}
}