-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.47 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.47 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "react-entity-component-system",
"version": "2.0.0",
"description": "Entity Component System for React to make games or other interactive components.",
"repository": "https://github.com/mattblackdev/react-entity-component-system.git",
"author": "Matt Black",
"license": "MIT",
"private": false,
"source": "src/index.js",
"main": "dist/index.js",
"scripts": {
"start": "start-storybook -p 6006",
"build": "microbundle --jsx React.createElement --strict --compress --format modern,es,cjs",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages",
"test": "jest"
},
"keywords": [
"react",
"game",
"engine",
"entity",
"component",
"system",
"ecs"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"eslintConfig": {
"extends": "react-app"
},
"prettier": {
"printWidth": 80,
"singleQuote": true,
"semi": false,
"trailingComma": "all"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"immer": "^5.3.5",
"raf": "^3.4.1",
"stringify-object": "^3.3.0",
"use-immer": "^0.3.4"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@storybook/addons": "^5.2.5",
"@storybook/react": "^5.2.5",
"@storybook/storybook-deployer": "^2.8.1",
"@testing-library/react-hooks": "^3.2.1",
"@typescript-eslint/eslint-plugin": "2.19.2",
"@typescript-eslint/parser": "2.19.2",
"babel-eslint": "10.x",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"box-intersect": "^1.0.2",
"eslint": "6.8.0",
"eslint-config-react-app": "^5.0.2",
"eslint-plugin-flowtype": "4.6.0",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "2.3.0",
"husky": "^4.2.1",
"jest": "^25.1.0",
"microbundle": "^0.12.0-next.6",
"prettier": "1.19.1",
"pretty-quick": "^2.0.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-test-renderer": "^16.9.0",
"rollup": "^1.25.2",
"typescript": "^3.8.2",
"vec-la-fp": "^1.9.0",
"webpack": "^4.41.2"
}
}