-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·58 lines (58 loc) · 1.81 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
{
"name": "test-client",
"version": "1.0.0",
"description": "",
"main": "index.html",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server --mode development",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.7.4",
"@babel/runtime": "^7.5.5",
"@testing-library/react-hooks": "^3.2.1",
"autoprefixer": "^9.6.1",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"babel-preset-react": "^6.24.1",
"css-loader": "^3.1.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.3.5",
"eslint": "^6.7.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-import-resolver-webpack": "^0.12.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"extract-css-chunks-webpack-plugin": "^4.5.6",
"fetch-mock": "^9.0.0-beta.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.1.0",
"jest-config": "^25.1.0",
"node-fetch": "^2.6.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"react-test-renderer": "^16.12.0",
"sass-loader": "^8.0.2",
"webpack": "^4.41.3",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2",
"whatwg-fetch": "^3.0.0"
},
"dependencies": {
"html-webpack-plugin": "^3.2.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2"
}
}