-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.51 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "entry-auth",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "env-cmd webpack serve --mode development --config ./config/webpack.config.js",
"build": "webpack serve --mode production --progress --config ./config/webpack.config.js",
"prepare": "husky install",
"lint": "npx eslint --ext .tsx --ext .ts .",
"lint:fix": "npx eslint --ext .tsx --ext .ts . --fix",
"prettier": "prettier --write .",
"test": "jest"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@team-entry/design_system": "^1.1.12",
"axios": "^1.2.2",
"dotenv": "^16.3.1",
"emotion": "^11.0.0",
"react": "^18.2.0",
"react-cookie": "^4.1.1",
"react-dom": "^18.2.0",
"react-query": "^3.39.3",
"react-router": "^6.6.1",
"react-router-dom": "^6.6.1",
"react-scripts": "^5.0.1",
"universal-cookie": "^4.0.4"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@emotion/babel-plugin": "^11.10.5",
"@types/jest": "^29.5.2",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"babel-loader": "^9.1.0",
"copy-webpack-plugin": "^11.0.0",
"core-js": "^3.27.1",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^4.2.2",
"env-cmd": "^10.1.0",
"eslint": "^8.31.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"jest": "^29.5.0",
"mini-css-extract-plugin": "^2.7.2",
"prettier": "^2.8.1",
"react-error-overlay": "6.0.9",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"supertest": "^6.3.3",
"terser-webpack-plugin": "^5.3.6",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
}
}