-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.7 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
{
"name": "chart",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "echo \"---> BUILD: \" && next build",
"start": "next start",
"lint": "echo \"---> LINT: \" && tsc --build --clean && eslint --ext .ts,.tsx ./ --quiet --fix",
"post-update": "echo \"---> DEPENDENCES UPDATE: \" && yarn upgrade --latest",
"pre-commit": "yarn run lint && yarn run build",
"prod-run": "yarn run build && yarn run start",
"serve": "next start",
"webpack-analyze": "ANALYZE=true next build"
},
"dependencies": {
"@nextui-org/react": "^1.0.0-beta.12",
"csv": "^6.2.8",
"next": "^13.3.0",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^2.5.0",
"swr": "^2.1.3"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.3.0",
"@next/eslint-plugin-next": "^13.3.0",
"@types/node": "^18.15.11",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-next": "^13.3.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.8.7",
"typescript": "^5.0.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"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"
]
}
}