-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.98 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.98 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "react-dev",
"version": "0.1.0",
"description": "",
"scripts": {
"start": "cross-env NODE_ENV=development webpack serve --config config/webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --config config/webpack.prod.js",
"test": "jest",
"lint": "eslint src/**/*.js[x]"
},
"dependencies": {
"@babel/runtime": "*",
"@popperjs/core": "^2.6.0",
"bootstrap": "^5.0.0-beta1",
"classnames": "*",
"cn": "^0.1.1",
"immutability-helper": "^3.1.1",
"lodash": "^4.17.20",
"prop-types": "^15.7.2",
"react": "^17.0",
"react-dom": "*",
"react-helmet": "^6.1.0",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@babel/core": "*",
"@babel/plugin-transform-runtime": "*",
"@babel/preset-env": "*",
"@babel/preset-react": "*",
"@wojtekmaj/enzyme-adapter-react-17": "^0.4.1",
"babel-eslint": "*",
"babel-jest": "^26.6.3",
"babel-loader": "*",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "*",
"css-loader": "*",
"css-minimizer-webpack-plugin": "*",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.1",
"eslint": "*",
"eslint-config-airbnb": "*",
"eslint-plugin-babel": "*",
"eslint-plugin-import": "*",
"eslint-plugin-jsx-a11y": "*",
"eslint-plugin-react": "*",
"eslint-plugin-react-hooks": "*",
"html-webpack-plugin": "*",
"jest": "^26.6.3",
"mini-css-extract-plugin": "*",
"node-sass": "*",
"sass-loader": "*",
"style-loader": "*",
"timeout-then": "^2.0.0",
"webpack": "^5",
"webpack-cli": "^4",
"webpack-dev-server": "^3",
"webpack-merge": "^5"
},
"jest": {
"roots": [
"<rootDir>/test"
],
"setupFilesAfterEnv": [
"<rootDir>/test/setupTests.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"verbose": true,
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"src"
]
}
}