-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
70 lines (70 loc) · 2.38 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
{
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode development",
"build:watch": "webpack --mode production --watch",
"dev:watch": "webpack --mode development --watch",
"test": "jest srcjs",
"test:cover": "jest srcjs --coverage",
"test:update": "jest srcjs --updateSnapshot",
"client": "webpack -c webpack.config.client.js --mode production",
"client-dev": "webpack -c webpack.config.client.js --mode development",
"client-dev:watch": "webpack -c webpack.config.client.js --mode development --watch",
"server": "webpack -c webpack.config.server.js --mode production",
"server-dev": "webpack -c webpack.config.server.js --mode development",
"server-dev:watch": "webpack -c webpack.config.server.js --mode development --watch",
"lint": "eslint srcjs",
"format": "prettier --write srcjs"
},
"license": "MIT",
"dependencies": {
"@emotion/cache": "^11.9.3",
"@emotion/css": "^11.1.3",
"@emotion/react": "^11.9.3",
"@emotion/server": "^11.4.0",
"@formatjs/intl-getcanonicallocales": "^2.0.2",
"@formatjs/intl-locale": "^3.0.3",
"@formatjs/intl-numberformat": "^8.0.4",
"@formatjs/intl-pluralrules": "^5.0.3",
"buffer": "^6.0.3",
"process": "^0.11.10",
"prop-types": "^15.7.2",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-table": "^7.6.2",
"react-test-renderer": "^17.0.2",
"stream-browserify": "^3.0.0",
"util": "^0.12.4"
},
"devDependencies": {
"@babel/core": "^7.22.17",
"@babel/eslint-parser": "^7.22.15",
"@babel/preset-env": "^7.22.15",
"@babel/preset-react": "^7.22.15",
"@emotion/jest": "^11.3.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"css-loader": "^3.6.0",
"cssnano": "^5.1.9",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^4.0.8",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.1.0",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.4.14",
"postcss-loader": "^4.3.0",
"prettier": "^2.0.5",
"webpack": "^5.36.2",
"webpack-cli": "^4.6.0"
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}