-
Notifications
You must be signed in to change notification settings - Fork 9
/
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": "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",
"seed": "node scripts/seed.mjs",
"cleanup": "node scripts/cleanup.mjs",
"bootstrap": "node scripts/bootstrap.mjs",
"xata:one-click": "pnpm install && node scripts/cleanup.mjs --force && node scripts/one-click.mjs && node scripts/seed.mjs"
},
"dependencies": {
"@chakra-ui/next-js": "^2.2.0",
"@chakra-ui/react": "^2.8.2",
"@chakra-ui/theme": "^3.3.1",
"@chakra-ui/theme-tools": "^2.1.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@fluentui/react-icons": "^2.0.237",
"@xata.io/client": "^0.29.4",
"chroma-js": "^2.4.2",
"dotenv": "^16.4.5",
"lodash": "^4.17.21",
"next": "14.2.3",
"prettier": "^3.2.5",
"react": "18.3.1",
"react-dom": "18.3.1",
"slugify": "^1.6.6",
"typescript": "5.4.5",
"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.2",
"@types/chroma-js": "^2.4.4",
"@types/lodash": "^4.17.0",
"@types/node": "20.12.7",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "=8.56.0",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-check-file": "^2.8.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"framer-motion": "^11.1.7",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier-plugin-organize-imports": "^3.2.4"
}
}