-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
70 lines (70 loc) · 1.93 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
{
"name": "xata-image-gallery",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"chakra-types-gen": "chakra-cli tokens ./theme/theme.ts",
"postinstall": "pnpm run chakra-types-gen",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/next-js": "^2.1.5",
"@chakra-ui/react": "^2.8.1",
"@chakra-ui/theme": "^3.3.0",
"@chakra-ui/theme-tools": "^2.1.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fluentui/react-icons": "^2.0.218",
"@xata.io/client": "^0.26.7",
"chroma-js": "^2.4.2",
"lodash": "^4.17.21",
"next": "13.4.12",
"prettier": "=2.8.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"slugify": "^1.6.6",
"typescript": "5.1.6",
"uuid": "^9.0.1"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --config=.prettierrc.precommit.js --write",
"eslint --cache --fix"
],
"*.{css,json,md,yml,yaml}": [
"prettier --write"
]
},
"engines": {
"node": ">=18.12.1 <19",
"pnpm": "^8.6.5"
},
"devDependencies": {
"@chakra-ui/cli": "^2.4.1",
"@chakra-ui/styled-system": "^2.9.1",
"@types/chroma-js": "^2.4.1",
"@types/lodash": "^4.14.199",
"@types/node": "20.4.5",
"@types/react": "18.2.17",
"@types/react-dom": "18.2.7",
"@types/uuid": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "8.45.0",
"eslint-config-next": "13.4.12",
"eslint-config-prettier": "=8.8.0",
"eslint-plugin-check-file": "^2.6.2",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "=4.2.1",
"eslint-plugin-react": "^7.33.2",
"framer-motion": "^10.16.4",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"prettier-plugin-organize-imports": "^3.2.3"
}
}