-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.07 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
69
70
{
"name": "react-lab",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"author": "Eugene",
"scripts": {
"chk": "check-dependencies",
"start": "npm run chk && rm -rf ./public && NODE_ENV=development webpack serve --config ./webpack.config.dev.js",
"lint": "eslint .",
"test": "npx jest",
"test:watch": "npx jest --maxWorkers=50% --watch",
"test:debug": "node --inspect-brk node_modules/.bin/jest --watch --runInBand"
},
"lint-staged": {
"*.js": "eslint --fix"
},
"dependencies": {
"@babel/runtime-corejs3": "7.15.4",
"@emotion/react": "11.4.1",
"@emotion/styled": "11.3.0",
"core-js": "3.18.1",
"lodash": "4.17.20",
"react": "18.0.0-rc.0",
"react-dom": "18.0.0-rc.0",
"react-error-boundary": "3.1.4"
},
"devDependencies": {
"@babel/cli": "7.15.4",
"@babel/core": "7.15.5",
"@babel/preset-env": "7.15.4",
"@babel/preset-react": "7.14.5",
"@emotion/babel-plugin": "11.3.0",
"@emotion/eslint-plugin": "11.2.0",
"@emotion/jest": "11.3.0",
"@testing-library/jest-dom": "5.16.1",
"@testing-library/react": "13.0.0-alpha.5",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.2",
"check-dependencies": "1.1.0",
"css-loader": "5.2.7",
"eslint": "7.32.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-babel": "9.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jest": "24.4.2",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.25.1",
"eslint-plugin-react-hooks": "4.2.0",
"html-webpack-plugin": "5.5.0",
"husky": "7.0.4",
"jest": "27.1.0",
"jest-environment-jsdom": "27.1.0",
"jest-silent-reporter": "0.5.0",
"jest-when": "3.3.1",
"mini-css-extract-plugin": "2.4.5",
"modern-normalize": "1.1.0",
"prettier": "2.3.2",
"prop-types": "15.8.0",
"source-map-loader": "3.0.0",
"webpack": "5.65.0",
"webpack-cli": "4.9.1",
"webpack-dev-server": "4.6.0"
},
"browserslist": [
"defaults"
]
}