-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.58 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
{
"name": "2d-physics-engine",
"version": "0.1.0",
"private": true,
"homepage": "https://remziatay.github.io/2d-physics-engine",
"dependencies": {
"formik": "^2.2.1",
"raf-schd": "^4.0.2",
"react": "latest",
"react-dom": "latest",
"react-scripts": "latest",
"yup": "^0.29.3"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": [
"standard",
"react-app",
"plugin:import/errors",
"plugin:react/recommended",
"plugin:jsx-a11y/recommended"
],
"plugins": [
"import",
"react",
"jsx-a11y"
],
"rules": {
"react/prop-types": 0,
"react/no-unescaped-entities": 0
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@craco/craco": "^5.7.0",
"autoprefixer": "^10.0.1",
"eslint-config-standard": "latest",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "latest",
"eslint-plugin-promise": "latest",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-standard": "latest",
"gh-pages": "latest",
"postcss-nested": "^5.0.1",
"stylelint": "^13.7.2",
"stylelint-config-standard": "^20.0.0",
"tailwindcss": "^1.9.6"
}
}