-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.92 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.92 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
{
"name": "phaser2-sample-app",
"version": "1.0.0",
"description": "Phaser 2 Sample App",
"author": {
"name": "Peter Wu",
"email": "peter.wu@kaiostec.com"
},
"main": "index.js",
"scripts": {
"start": "webpack --mode development --env VERSION=kai",
"build:kai": "webpack --config webpack.production.config.js --mode production --env VERSION=kai",
"build:kaiNext": "webpack --config webpack.production.config.js --mode production --env VERSION=kaiNext",
"test": "eslint ./src/**/*.js"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"browser-sync": "^2.26.14",
"browser-sync-webpack-plugin": "^2.3.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^5.1.2",
"eslint": "^7.19.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"expose-loader": "^0.7.4",
"filemanager-webpack-plugin": "^2.0.5",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^4.4.0",
"preprocess-loader": "^0.2.2",
"terser-webpack-plugin": "^4.2.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.46.0",
"webpack-cli": "^4.5.0",
"webpack-zip-files-plugin": "^1.0.0",
"workbox-webpack-plugin": "^3.6.2"
},
"dependencies": {
"idiom.js": "^1.0.0",
"phaser-ce": "^2.16.1",
"webfontloader": "^1.6.28"
},
"tags": [
"phaser",
"kaios-games"
],
"keywords": [
"phaser",
"kaios-games"
],
"babel": {
"presets": [
"env"
]
}
}