-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.64 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.64 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
{
"name": "react-form-acid-test",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "webpack serve",
"test": "jest --watch",
"lint": "eslint src",
"check:types": "tsc --noEmit --watch"
},
"dependencies": {
"final-form": "^4.20.1",
"final-form-arrays": "^3.0.2",
"formik": "^2.2.6",
"ramda": "^0.27.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-final-form": "^6.5.2",
"react-final-form-arrays": "^3.1.3",
"react-hook-form": "^6.15.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-select": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/preset-env": "^7.12.16",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.12.16",
"@types/jest": "^26.0.20",
"@types/ramda": "^0.27.38",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"@types/react-router": "^5.1.11",
"@types/react-router-dom": "^5.1.7",
"@types/react-select": "^4.0.13",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"babel-loader": "^8.2.2",
"core-js": "^3.8.3",
"css-loader": "^5.0.2",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"html-webpack-plugin": "^5.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"style-loader": "^2.0.0",
"typescript": "^4.1.5",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
}
}