-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 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
71
72
73
74
75
76
77
78
79
{
"name": "qltc",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --config ./.eslintrc.js . --ext .jsx,.js,.tsx,.ts",
"lint:fix": "yarn run lint --fix",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@popperjs/core": "^2.11.6",
"chroma-js": "^2.4.2",
"dayjs": "^1.11.8",
"firebase": "^9.9.4",
"immer": "^9.0.15",
"lodash.omit": "^4.5.0",
"next": "^12.2.5",
"react": "^18.2.0",
"react-datepicker": "^4.8.0",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
"react-modal": "^3.16.1",
"react-popper": "^2.3.0",
"react-select": "^5.4.0",
"react-toastify": "^9.0.8",
"recharts": "2.1.12",
"typescript": "^4.8.2",
"zustand": "^4.1.1"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.10.2",
"@emotion/eslint-plugin": "^11.10.0",
"@types/chroma-js": "^2.1.4",
"@types/lodash.omit": "^4.5.7",
"@types/node": "^18.7.16",
"@types/react": "^18.0.18",
"@types/react-datepicker": "^4.4.2",
"@types/react-dom": "^18.0.6",
"@types/react-modal": "^3.13.1",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.0",
"eslint-config-next": "^12.2.5",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.7",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --config ./.eslintrc.js --cache --fix",
"*.{json,yml,md}": [
"prettier --write"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=14.0.0"
}
}