-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
82 lines (82 loc) · 2.1 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "poly-mini-game",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"flat": true,
"scripts": {
"start": "webpack-dev-server --open --config ./build/webpack.dev.conf.js",
"build": "webpack --config ./build/webpack.prod.conf.js",
"deploy": "firebase deploy"
},
"dependencies": {
"@polymer/polymer": "next",
"@webcomponents/webcomponentsjs": "^1.0.8",
"lodash": "^4.17.4",
"reflect-metadata": "^0.1.10"
},
"resolutions": {
"@polymer/polymer": "3.0.0-pre.1",
"acorn": "5.1.1",
"ajv": "5.2.2",
"yargs": "8.0.2",
"inherits": "2.0.3",
"string_decoder": "0.10.31",
"minimist": "0.0.8",
"punycode": "1.4.1",
"hash-base": "2.0.2",
"camelcase": "4.1.0",
"cliui": "3.2.0",
"kind-of": "3.2.2",
"is-number": "2.1.0",
"string-width": "2.1.1",
"strip-ansi": "3.0.1",
"is-fullwidth-code-point": "2.0.0",
"ansi-regex": "2.1.1",
"assert-plus": "0.2.0",
"uglify-js": "2.8.29",
"loader-utils": "1.1.0",
"readable-stream": "2.3.3",
"isarray": "1.0.0",
"utila": "0.4.0",
"domutils": "1.5.1",
"domelementtype": "1.3.0",
"rimraf": "2.6.1",
"async": "2.5.0",
"supports-color": "4.2.1",
"has-flag": "2.0.0",
"is-glob": "2.0.1",
"is-extglob": "1.0.0",
"qs": "6.4.0",
"uuid": "3.1.0",
"os-locale": "2.1.0",
"read-pkg-up": "2.0.0",
"which-module": "2.0.0",
"yargs-parser": "7.0.0",
"find-up": "2.1.0",
"read-pkg": "2.0.0",
"path-exists": "3.0.0",
"load-json-file": "2.0.0",
"path-type": "2.0.0",
"pify": "2.3.0",
"strip-bom": "3.0.0",
"array-flatten": "2.1.1",
"mime": "1.4.0",
"faye-websocket": "0.11.1",
"url-parse": "1.1.9",
"querystringify": "1.0.0",
"glob": "7.1.2",
"bluebird": "3.5.0",
"mime-db": "1.30.0"
},
"devDependencies": {
"clean-webpack-plugin": "^0.1.16",
"copy-webpack-plugin": "^4.0.1",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"ts-loader": "^2.3.4",
"typescript": "^2.4.2",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
}
}