-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.19 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
{
"name": "next-js-boilerplate",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build-stats": "cross-env ANALYZE=true npm run build",
"export": "next export",
"build-prod": "run-s clean build export",
"clean": "rimraf .next out",
"lint": "next lint",
"build-types": "tsc --noEmit --pretty",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/icons": "^1.0.16",
"@chakra-ui/react": "^1.6.10",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@hapi/iron": "^6.0.0",
"@prisma/client": "^3.3.0",
"aws-sdk": "^2.1018.0",
"cookie": "^0.4.1",
"framer-motion": "^4",
"mobx": "^6.3.6",
"mobx-react-lite": "^3.2.2",
"mobx-state-tree": "^5.0.4",
"next": "^11.1.2",
"next-connect": "^0.11.0",
"next-seo": "^4.28.1",
"passport": "^0.5.0",
"passport-local": "^1.0.0",
"prisma": "3.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropzone": "^11.4.2",
"react-hook-form": "^7.17.5",
"react-icons": "^4.3.1",
"styled-jsx-plugin-postcss": "^4.0.1",
"swr": "^1.0.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^11.1.2",
"@types/cookie": "^0.4.1",
"@types/node": "^16.10.1",
"@types/passport": "^1.0.7",
"@types/passport-local": "^1.0.34",
"@types/react": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"autoprefixer": "^10.3.6",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-next": "^11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unused-imports": "^1.1.5",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.8",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"tailwindcss": "^2.2.16",
"typescript": "^4.4.3"
},
"license": "ISC"
}