-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·64 lines (64 loc) · 2.04 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
{
"name": "Phaser3-Examples",
"version": "1.0.0",
"description": "",
"author": "Jade Krafsig <[email protected]>",
"main": "main.js",
"scripts": {
"start": "webpack --mode=development",
"deploy": "webpack --mode=production --config webpack.production.config.js",
"test": "mocha -c ./src/**/*.test.js",
"test:watch": "mocha -c -w ./src/**/*.test.js",
"lint": "eslint --color ./src/**/**.js",
"lint:fix-dry-run": "eslint --color --fix-dry-run ./src/**/**.js",
"lint:fix": "babel-eslint --color --fix ./src/**/**.js",
"docs": "./node_modules/.bin/esdoc",
"jsdocs": "jsdoc -c ./jsdoc.config.json -R README.md"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.1.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.0.4",
"babel-polyfill": "^6.26.0",
"babel-preset-airbnb": "^3.0.1",
"babel-preset-es2015": "^6.24.1",
"browser-sync": "^2.24.4",
"browser-sync-webpack-plugin": "^2.2.2",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^1.0.0",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.7.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"expose-loader": "^0.7.3",
"html-webpack-plugin": "^3.2.0",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.5.5",
"mini-css-extract-plugin": "^0.4.4",
"mocha": "^5.2.0",
"node-sass": "^4.9.3",
"node-sass-glob-importer": "^5.2.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"raw-loader": "^0.5.1",
"resolve-url-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.10.0",
"webpack-cli": "^3.0.1",
"yan": "0.0.1",
"yarn": "^1.7.0"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"babel": "^6.23.0",
"phaser": "3.9.0",
"phaser-animated-tiles": "^2.0.2"
}
}