-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
{
"name": "game-of-life",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^3.7.0",
"@material-ui/icons": "^3.0.1",
"@types/node": "^12.7.12",
"react": "^16.8.6",
"react-device-detect": "^1.6.1",
"react-dom": "^16.8.6",
"react-scripts": "^3.0.1",
"react-select": "^2.2.0",
"serve": "^11.1.0",
"styled-components": "^4.1.3",
"tone": "^13.4.9",
"typeface-roboto": "0.0.54"
},
"devDependencies": {
"@types/react-dom": "^16.8.4",
"@types/react-select": "^2.0.19",
"@types/styled-components": "^4.1.16",
"@types/tone": "git://github.com/Tonejs/TypeScript.git",
"@typescript-eslint/parser": "^1.10.2",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-sort-class-members": "^1.4.0",
"prettier": "^1.18.2",
"typescript": "^3.5.2"
},
"scripts": {
"start": "serve -s build",
"start_local": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}