-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.49 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
{
"name": "formiz-presentation",
"version": "0.1.0",
"private": true,
"dependencies": {
"@chakra-ui/react": "1.3.3",
"@emotion/react": "11.1.5",
"@emotion/styled": "11.1.5",
"@formiz/core": "1.0.1",
"@formiz/validations": "1.0.0",
"framer-motion": "3.9.1",
"prop-types": "15.7.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-icons": "4.2.0",
"react-scripts": "4.0.3",
"react-select": "4.2.1"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-app-rewired eject"
},
"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": {
"@trivago/prettier-plugin-sort-imports": "1.4.4",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "8.1.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"jsconfig-paths-webpack-plugin": "0.1.3",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"react-app-rewire-alias": "1.0.1",
"react-app-rewired": "2.1.8"
},
"lint-staged": {
"*.{js,jsx,json}": "prettier -w",
"*.{js,jsx}": "eslint --cache --fix"
}
}