This repository was archived by the owner on Jan 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.15 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.15 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
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
71
{
"name": "taskcluster-web-server",
"version": "0.0.0-private",
"private": true,
"main": "build/index.js",
"author": "Eli Perelman <eli@eliperelman.com>",
"license": "MPL-2.0",
"engines": {
"node": ">=10.0.0",
"yarn": ">=1.10.0"
},
"scripts": {
"build": "webpack --mode production",
"start": "webpack --watch --mode development",
"heroku-postbuild": "yarn build",
"lint": "eslint --cache --format codeframe --ext mjs,js src test",
"test": "mocha --require mocha.config.js --recursive"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@neutrinojs/mocha": "9.0.0-rc.0",
"@neutrinojs/node": "9.0.0-rc.0",
"eslint": "^5.10.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-prettier": "^3.0.0",
"mocha": "^5.2.0",
"neutrino": "9.0.0-rc.0",
"prettier": "^1.14.3",
"raw-loader": "^1.0.0",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"@mozilla-frontend-infra/node-lint": "^1.1.1",
"amqp-match": "^0.0.0",
"apollo-server-express": "^2.3.1",
"async-decorators": "^0.1.5",
"body-parser-graphql": "^1.0.0",
"compression": "^1.7.2",
"cors": "^2.8.4",
"dataloader": "^1.4.0",
"debug": "^3.1.0",
"deepmerge": "^2.0.1",
"ejs": "^2.6.1",
"express": "^4.16.3",
"graphql": "^14.0.2",
"graphql-depth-limit": "^1.1.0",
"graphql-iso-date": "^3.5.0",
"graphql-playground-middleware-express": "^1.7.8",
"graphql-tools": "^4.0.3",
"graphql-type-json": "^0.2.0",
"graphql-validation-complexity": "^0.2.3",
"immutable": "^3.8.2",
"iterall": "^1.2.2",
"node-fetch": "^2.3.0",
"passport": "^0.4.0",
"passport-github": "^1.1.0",
"ramda": "^0.25.0",
"sift": "^6.0.0",
"source-map-support": "^0.5.4",
"subscriptions-transport-ws": "^0.9.7",
"taskcluster-client": "^12.2.0",
"taskcluster-lib-loader": "^10.0.1",
"taskcluster-lib-monitor": "^10.0.0",
"taskcluster-lib-pulse": "^11.1.0",
"taskcluster-lib-urls": "^10.1.1",
"typed-env-config": "^2.0.0"
}
}