-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.44 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
{
"name": "skywaybridgestatus",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"predev": "ts-node --project ./tsconfig.json ./src/scripts/generateAntdCss.tsx",
"prebuild": "ts-node --project ./tsconfig.json ./src/scripts/generateAntdCss.tsx"
},
"dependencies": {
"@ant-design/colors": "^7.0.0",
"@ant-design/cssinjs": "^1.18.0-alpha.0",
"@ant-design/icons": "^5.2.6",
"@next/third-parties": "^14.1.4",
"antd": "^5.11.2",
"firebase": "^10.5.2",
"next": "^14.1.4",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@ant-design/static-style-extract": "^1.0.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.16",
"eslint": "^8",
"eslint-config-next": "14.0.1",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"postcss": "^8.4.31",
"prisma": "^5.6.0",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5"
},
"lint-staged": {
"*.{ts,js,tsx,jsx}": "eslint --cache --fix",
"*.{ts,js,tsx,jsx,css,md,json}": "prettier --write"
}
}