-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
76 lines (76 loc) · 2.44 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
{
"name": "2d-ftg-engine",
"version": "0.0.1",
"description": "react FighT Game engine",
"main": "index.js",
"entry": {
"editor": "./src/entry/editor/index.js",
"index": "./src/entry/index/index.js"
},
"scripts": {
"start": "npm run dev",
"dev": "webpack-dev-server --hot --inline --content-base ./dist",
"rename": "find . -type f | sed -n \"p;s/frame_\\([0-9]*\\)_.*\\.png/\\1\\.png/g\" | xargs -n2 mv",
"eslint": "./node_modules/.bin/eslint --ext .js,.jsx ./src",
"eslint-fix": "./node_modules/.bin/eslint --fix --ext .js,.jsx ./src",
"stylelint": "./node_modules/.bin/stylelint ./src/**/*.less",
"stylelint-fix": "./node_modules/.bin/stylelint --fix ./src/**/*.less",
"lint": "npm run eslint && npm run stylelint",
"lint-fix": "npm run eslint-fix && npm run stylelint-fix"
},
"pre-commit": [
"lint-fix"
],
"author": "Tian Hao",
"license": "ISC",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-import": "^1.7.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"icons-loader": "^0.0.6",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"pre-commit": "^1.2.2",
"react-ace": "^6.1.1",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"source-map-support": "^0.4.15",
"style-inject": "^0.1.2",
"style-loader": "^0.18.2",
"stylelint": "^9.2.1",
"stylelint-config-recommended": "^2.1.0",
"stylelint-config-standard": "^18.2.0",
"svg-url-loader": "^2.1.1",
"url-loader": "^0.5.8",
"webpack": "^2.6.1",
"webpack-clean-obsolete-chunks": "^0.1.9",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"antd": "^3.5.0",
"prop-types": "^15.6.1",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-loading-components": "^1.1.12",
"react-svg-joystick": "^1.0.0"
}
}