-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.33 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
{
"name": "yokaa",
"version": "0.1.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint ./**/*.{ts,tsx,js}",
"prepare": "husky install",
"prettier:check": "prettier --config .prettierrc ./**/*.{ts,tsx,js,jsx} --check",
"prettier:format": "prettier --config .prettierrc ./**/*.{ts,tsx,js,jsx} --write",
"release": "release-it"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/material": "^5.11.0",
"@types/node": "18.11.17",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"antd": "^5.0.7",
"chart.js": "^4.1.1",
"eslint": "8.30.0",
"eslint-config-next": "13.0.7",
"next": "13.0.7",
"react": "18.2.0",
"react-chartjs-2": "^5.1.0",
"react-dom": "18.2.0",
"react-icons": "^4.7.1",
"recoil": "^0.7.6",
"typescript": "4.9.4"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"autoprefixer": "^10.4.13",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"postcss": "^8.4.20",
"prettier": "^2.8.8",
"release-it": "^15.11.0",
"tailwindcss": "^3.2.4"
},
"lint-staged": {
"*.@(js|jsx|ts|tsx)": [
"npm run prettier:check",
"npm run lint"
]
}
}