forked from chen-chens/hookloop-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.96 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
86
87
88
89
90
91
92
93
94
{
"name": "hookloop",
"version": "0.1.0",
"private": true,
"description": "This is a Front-End project for HOOKLOOP(project tracking application) by using Next.js & Typescript.",
"repository": "https://github.com/chen-chens/hookloop-client.git",
"author": "Ariean, Emi, Joanna, Jason, Yuna, Yun",
"engines": {
"node": ">=16.14.0"
},
"scripts": {
"dev": "next dev",
"predev": "ts-node --project ./tsconfig.node.json ./scripts/genAntdCss.tsx",
"prebuild": "cross-env NODE_ENV=production ts-node --project ./tsconfig.node.json ./scripts/genAntdCss.tsx",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"commit": "cz",
"changelog": "npx conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"prepare": "husky install"
},
"dependencies": {
"@ant-design/cssinjs": "^1.3.0",
"@ant-design/icons": "^5.0.1",
"@ant-design/static-style-extract": "~1.0.1",
"@hello-pangea/dnd": "^16.2.0",
"antd": "^5.3.2",
"autoprefixer": "10.4.14",
"axios": "^1.4.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"crypto-js": "^4.1.1",
"dayjs": "1.11.7",
"dotenv": "^16.3.1",
"immer": "^10.0.2",
"js-cookie": "^3.0.5",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"next": "^13.1.1",
"next-connect": "^1.0.0-next.4",
"postcss": "8.4.23",
"react": "18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "18.2.0",
"react-query": "^3.39.3",
"react-quill": "^2.0.0",
"react-use-websocket": "^4.3.1",
"tailwindcss": "3.3.1",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@next/font": "^13.3.1",
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.13",
"@types/crypto-js": "^4.1.1",
"@types/js-cookie": "^3.0.3",
"@types/lodash": "^4.14.194",
"@types/node": "^18.15.12",
"@types/react": "^18.0.37",
"@types/react-beautiful-dnd": "^13.1.4",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"commitizen": "^4.3.0",
"commitlint": "^17.6.1",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.39.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^13.3.1",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.7",
"prettier-eslint": "^15.0.1",
"prettier-plugin-tailwindcss": "^0.3.0",
"typescript": "^5.0.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}