-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 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
{
"name": "apollo-server-v8-heapsnapshot",
"version": "0.1.0",
"description": "An apollo graphql server that serves up heap snapshots for interactive applications",
"main": "src/main.ts",
"repository": "https://github.com/masterkidan/apollo-server-heapsnapshot.git",
"author": "masterKidan <masterKidan@github.com>",
"license": "MIT",
"dependencies": {
"@types/connect": "^3.4.31",
"@types/express": "^4.11.1",
"@types/koa": "^2.0.44",
"@types/koa-bodyparser": "^4.2.0",
"@types/koa-router": "^7.0.27",
"@types/lodash-es": "^4.17.0",
"apollo-engine": "^1.0.3",
"apollo-engine-binary-linux": "^0.2018.2-173-g279a6312e-dirty-7w3avw9rq2nd",
"apollo-server-express": "^1.3.2",
"awesome-typescript-loader": "^4.0.1",
"body-parser": "^1.18.2",
"connect": "^3.6.6",
"express": "^4.16.3",
"graphql": "^0.13.2",
"graphql-tools": "^2.23.1",
"koa": "^2.5.0",
"koa-body-parser": "^1.1.2",
"koa-router": "^7.4.0",
"lodash-es": "^4.17.7",
"restify": "^7.0.0",
"tslint": "^5.9.1",
"typescript": "^2.7.2",
"uglifyjs-webpack-plugin": "^1.2.4",
"v8-heapsnapshot": "^1.0.3",
"webpack": "^4.2.0",
"webpack-cli": "^2.0.12"
},
"scripts": {
"debug": "npx webpack --mode development",
"build": "npx webpack --mode production",
"start": "node --max-old-space-size=8192 dist/server.js"
}
}