This repository has been archived by the owner on Feb 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 310
/
package.json
69 lines (69 loc) · 2.25 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
{
"name": "react-game-kit",
"version": "2.0.0-alpha.1",
"description": "Make games with react",
"main": "lib",
"files": [
"native.js",
"lib",
"umd"
],
"scripts": {
"start": "webpack-dev-server --config webpack.config.dev.js",
"build": "babel src -d lib --copy-files --extensions \".ts,.tsx,.js,.jsx\"",
"clean": "rimraf dist",
"clean-build": "rimraf lib",
"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 *.js",
"lint-fix": "eslint src demo *.js --fix",
"preversion": "npm run lint",
"version": "npm run clean-build && npm run build"
},
"author": "Ken Wheeler",
"license": "MIT",
"repository": "https://github.com/FormidableLabs/react-game-kit",
"dependencies": {
"matter-js": "^0.14.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.20.0",
"@babel/plugin-transform-flow-strip-types": "^7.19.0",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.0.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"css-loader": "^6.7.1",
"csstype": "^3.1.1",
"eslint": "^8.26.0",
"eslint-config-formidable": "^4.0.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.10",
"json-loader": "^0.5.7",
"mobx": "^3.3.0",
"mobx-react": "^4.3.3",
"postcss-loader": "^2.0.6",
"prop-types": "^15.5.10",
"raw-loader": "^4.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-loader": "^4.13.0",
"react-native": "0.50.4",
"rimraf": "^2.5.4",
"style-loader": "^0.19.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"sideEffects": false
}