-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.25 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.25 KB
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
{
"name": "transit-gql",
"version": "0.0.1",
"description": "A transit data GQL implementation.",
"repository": "https://source.lukecreative.life/l.billington/transitgql",
"private": true,
"main": "dist/server.js",
"scripts": {
"start": "npm run watch:build",
"all": "run-s clean lint build",
"clean": "rm -rf dist",
"lint:prettier": "prettier --parser typescript --debug-check src/**/*.ts",
"lint:typescript": "tslint \"src/**/*.ts\"",
"lint": "run-p -l lint:**",
"build": "tsc -p .",
"watch:build": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/server.ts"
},
"author": "Luke Billington",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.16.1",
"@types/graphql": "^14.2.0",
"@types/xml2js": "^0.4.3",
"nodemon": "^1.19.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"ts-lint": "^4.5.1",
"ts-node": "^8.0.3",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^3.4.1"
},
"dependencies": {
"apollo-server": "^2.4.8",
"apollo-server-express": "^2.4.8",
"axios": "^0.18.0",
"express": "^4.16.4",
"graphql": "^14.2.1",
"node-cache": "^4.2.0",
"xml2js": "^0.4.19"
}
}