-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.88 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
{
"name": "react-game-of-life",
"version": "2.0.0",
"private": true,
"dependencies": {
"@xstate/react": "^1.0.2",
"classnames": "^2.2.6",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "^4.0.3",
"tailwind": "^4.0.0",
"typescript": "^4.0.5",
"xstate": "^4.11.0"
},
"scripts": {
"build:styles": "postcss src/tailwind.css -o src/styles.css",
"prestart": "npm run build:styles",
"start": "react-scripts start",
"prebuild": "NODE_ENV=production npm run build:styles",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"analyze": "npm run build && source-map-explorer 'build/static/js/*.js'"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/classnames": "^2.2.10",
"@types/jest": "^26.0.9",
"@types/node": "^15.12.4",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"autoprefixer": "^10.0.1",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^4.2.5",
"postcss": "^8.1.6",
"postcss-cli": "^8.2.0",
"prettier": "^2.0.5",
"pretty-quick": "^3.1.0",
"source-map-explorer": "^2.4.2",
"stylelint-config-recommended": "^5.0.0",
"tailwindcss": "^2.2.2"
},
"engines": {
"node": ">=14"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}