-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.63 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.63 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
80
81
82
83
84
{
"name": "@monoid-dev/homepage",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "node scripts/sitemapGenerator.js;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",
"postinstall": "if [ \"$NODE_ENV\" != production ]; then husky install; fi",
"lc": "npx cloc . --exclude-dir=node_modules,dist,.next,out",
"create-sitemap": "node scripts/sitemapGenerator.js"
},
"dependencies": {
"@monoid-dev/use-strings": "^0.0.1",
"@react-three/drei": "9.92.7",
"@react-three/fiber": "^8.16.2",
"@svgr/webpack": "^8.1.0",
"@types/js-cookie": "^3.0.6",
"@types/node": "^18.19.31",
"@types/three": "^0.160.0",
"autoprefixer": "^10.4.19",
"clsx": "^2.1.0",
"cssnano": "^6.1.2",
"dayjs": "^1.11.10",
"js-cookie": "^3.0.5",
"levenshtein-edit-distance": "^3.0.1",
"lodash": "^4.17.21",
"lottie-react": "~2.4.0",
"next": "^14.2.2",
"next-plausible": "^3.12.0",
"next-seo": "^6.5.0",
"postcss": "^8.4.38",
"prop-types": "^15.8.1",
"range-interpolator": "^1.0.2",
"react": "^18.2.0",
"react-countdown-hook": "^1.1.3",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.3",
"react-query": "^3.39.3",
"select-files": "^1.0.1",
"tailwindcss": "^3.4.3",
"three": "^0.160.1",
"ts-node": "^10.9.2",
"usehooks-ts": "^2.16.0"
},
"devDependencies": {
"@chenyuwang/eslint-config": "^0.0.2",
"@next/bundle-analyzer": "^14.2.2",
"@types/lodash": "^4.17.0",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"cross-env": "^7.0.3",
"eslint": "^10.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "^14.2.2",
"eslint-config-prettier": "^9.1.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",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.15.1",
"eslint-plugin-unused-imports": "^3.1.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.3.3"
},
"license": "ISC",
"eslintConfig": {
"extends": "@chenyuwang/eslint-config"
}
}