-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.74 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
{
"name": "nextjs-antd-styled-starter",
"version": "1.0.0",
"license": "ISC",
"scripts": {
"lint": "eslint --fix",
"format": "prettier --write",
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install"
},
"dependencies": {
"@ant-design/icons": "^4.6.2",
"@monaco-editor/react": "^4.3.1",
"@next/bundle-analyzer": "^11.1.0",
"@prisma/client": "2.29.0",
"antd": "4.15.6",
"classnames": "^2.3.1",
"form-data": "^4.0.0",
"gpt-3-encoder": "^1.1.3",
"handlebars": "^4.7.7",
"multer": "^1.4.3",
"next": "^12",
"next-connect": "^0.11.0",
"papaparse": "^5.3.1",
"query-string": "^7.0.1",
"raw-body": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"swr": "^0.5.6",
"tailwindcss": "^2.2.7"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/multer": "^1.4.7",
"@types/node": "^14",
"@types/papaparse": "^5.3.1",
"@types/react": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"autoprefixer": "^10.3.1",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.0",
"lint-staged": "^11.1.2",
"postcss": "^8.3.6",
"prettier": "^2.3.2",
"prisma": "2.29.0",
"typescript": "^4.3.5"
},
"lint-staged": {
"./**/*{.ts,.tsx}": [
"npm run format",
"npm run lint"
]
},
"volta": {
"node": "14.15.3",
"yarn": "1.22.10"
}
}