-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.24 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.24 KB
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
{
"name": "shape.it",
"version": "0.1.0",
"private": true,
"license": "(Apache-2.0)",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"commit": "git-cz",
"prepare": "husky install"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"dependencies": {
"@chakra-ui/react": "^1.6.10",
"@chakra-ui/theme-tools": "^1.2.2",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11",
"next": "^11.1.2",
"@hookform/resolvers": "^2.6.1",
"@next/bundle-analyzer": "^12.0.1",
"@supabase/supabase-js": "^1.24.0",
"axios": "^0.23.0",
"framer-motion": "^4.1.17",
"next-pwa": "^5.4.0",
"nookies": "^2.5.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.11.0",
"react-icons": "^4.3.1",
"react-query": "^3.27.0",
"react-remove-scroll": "^2.4.2",
"react-spinners": "^0.11.0",
"react-toastify": "^8.0.3",
"sass": "^1.35.2",
"use-sidecar": "^1.0.5",
"uuid": "^8.3.2",
"yup": "^0.32.9"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@types/node": "^16.11.1",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@types/react-router-dom": "^5.1.7",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.1.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^4.6.0",
"husky": "^7.0.2",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}