-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.37 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
{
"name": "flappybird",
"version": "0.2.0",
"description": "The Tiny.js game project build by tinyjs-cli",
"scripts": {
"start": "webpack-dev-server --mode development --inline --disable-host-check --host 0.0.0.0 --port 8017",
"lint": "eslint src/**",
"prebuild": "rm -rf dist",
"build": "webpack-cli --mode=production",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "yiiqii,fusheng.sfs",
"private": true,
"devDependencies": {
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"less": "^3.0.1",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.0",
"optimize-css-assets-webpack-plugin": "^4.0.0",
"style-loader": "^0.20.3",
"tinyjs-resource-loader": "^0.2.6",
"tinyjs-types": "^0.1.0",
"webpack": "^4.5.0",
"webpack-cli": "2.0.14",
"webpack-dev-server": "^3.1.3"
},
"dependencies": {
"tinyjs-plugin-ui": "^0.2.0"
}
}