-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.61 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
84
85
{
"name": "dms-front-admin",
"version": "1.0.0",
"scripts": {
"test": "jest",
"dev": "env-cmd webpack serve --mode development --config ./config/webpack.config.js",
"build": "env-cmd --silent webpack --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",
"e2e": "yarn cypress run"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@babel/runtime-corejs3": "^7.18.9",
"@types/eslint": "^8",
"@types/file-saver": "^2",
"@types/jest": "^29.2.6",
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"@types/react-color": "^3.0.6",
"@types/react-dom": "^18.0.10",
"@types/react-outside-click-handler": "^1.3.1",
"@types/recoil": "^0.0.9",
"@types/styled-components": "^5.1.26",
"babel-loader": "^8.2.5",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"cypress": "^12.8.1",
"cypress-react-selector": "^3.0.0",
"env-cmd": "^10.1.0",
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-aliens": "^1.0.10",
"eslint-plugin-import": "^2.27.5",
"html-webpack-plugin": "^5.5.0",
"husky": ">=7",
"image-webpack-loader": "^8.1.0",
"jest": "^29.2.2",
"lint-staged": ">=10",
"mini-css-extract-plugin": "^2.6.0",
"pinst": ">=2",
"prettier": "2.8.3",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.0",
"typescript": "^4.9.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@team-aliens/design-system": "^1.4.11",
"@types/styled-components": "^5.1.26",
"axios": "^1.1.3",
"core-js": "^3.24.1",
"exceljs": "^4.3.0",
"file-saver": "^2.0.5",
"react": "^18.2.0",
"react-color": "^2.19.3",
"react-cookie": "^4.1.1",
"react-dom": "^18.2.0",
"react-outside-click-handler": "^1.3.0",
"react-query": "^3.39.2",
"react-router-dom": "^6.4.2",
"recoil": "^0.7.6",
"styled-components": "^5.3.6",
"styled-normalize": "^8.0.7"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"packageManager": "[email protected]"
}