forked from GoogleChromeLabs/performance-game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.46 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
{
"name": "performance-game",
"private": "true",
"version": "1.0.0",
"description": "Game to visualize website performance problems",
"main": "server.js",
"scripts": {
"start": "node server.js",
"deploy": "gcloud app deploy",
"lint": "eslint .",
"pretest": "npm run lint",
"develop": "webpack --mode development --watch",
"build": "webpack --mode production"
},
"dependencies": {
"ajv": "^6.5.4",
"express": "^4.16.4",
"node-fetch": "latest",
"url": "0.11.x",
"compression": "latest",
"helmet": "latest",
"webpack": "latest",
"webpack-cli": "latest",
"copy-webpack-plugin": "latest",
"phaser": "2.5.0",
"material-design-lite": "1.3.0",
"dialog-polyfill": "0.4.10",
"p2": "latest",
"script-loader": "latest",
"expose-loader": "latest",
"critters-webpack-plugin": "latest",
"html-webpack-plugin": "latest",
"script-ext-html-webpack-plugin": "latest",
"@google-cloud/bigquery": "latest"
},
"engines": {
"node": "10.x.x"
},
"license": "Apache-2.0",
"keywords": [
"node",
"performance",
"express",
"puppeteer"
],
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "^2.3.5",
"eslint": "^5.6.1",
"eslint-config-strongloop": "^2.1.0",
"semistandard": "^12.0.1"
},
"cloud-repo-tools": {
"test": {
"app": {
"msg": "Hello, world!"
}
},
"requiresKeyFile": true,
"requiresProjectId": true
}
}