forked from FormidableLabs/react-game-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.86 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
{
"name": "react-game-kit",
"version": "0.0.1",
"description": "Make games with react",
"main": "lib",
"files": [
"native.js",
"lib",
"umd"
],
"scripts": {
"start": "webpack-dev-server --hot --inline --port 3000 --config webpack.config.dev.js --content-base demo/",
"build": "babel src -d lib --copy-files",
"clean": "rimraf dist",
"clean-umd": "rimraf umd",
"copy-assets": "cp -a demo/assets/. dist/assets",
"copy-html-css": "cp -a demo/index.html dist/index.html && cp -a demo/index.css dist/index.css",
"dist": "npm run clean && webpack && npm run copy-assets && npm run copy-html-css",
"lint": "eslint src demo --fix",
"umd": "npm run clean-umd && webpack --config webpack.config.umd.js"
},
"author": "Ken Wheeler",
"license": "MIT",
"repository": "https://github.com/FormidableLabs/react-game-kit",
"dependencies": {
"matter-js": "^0.10.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "^3.3.1",
"eslint-config-formidable": "^1.0.1",
"eslint-plugin-filenames": "^1.1.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.1.2",
"json-loader": "^0.5.4",
"mobx": "^2.5.0",
"mobx-react": "^3.5.5",
"postcss-loader": "^0.10.1",
"raw-loader": "^0.5.1",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-hot-loader": "^3.0.0-beta.2",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.15.0"
}
}