-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
70 lines (70 loc) · 1.88 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": "farbenfroh.io",
"contributors": [
"winston <[email protected]>"
],
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:wasm": "cargo watch -i README.md -i .gitignore -i 'pkg/*' -s 'wasm-pack build --target web --profiling'",
"build": "yarn build:wasm; next build",
"build:wasm": "wasm-pack build --target web --release",
"start": "next start",
"lint": "next lint && cargo clippy --target wasm32-unknown-unknown",
"export": "next export",
"prepare": "husky install"
},
"eslintConfig": {
"extends": [
"next/core-web-vitals",
"prettier"
]
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"packageManager": "[email protected]",
"dependencies": {
"@headlessui/react": "^1.7.15",
"@heroicons/react": "^2.0.18",
"@vercel/analytics": "^1.0.1",
"classnames": "^2.3.2",
"comlink": "^4.4.1",
"next": "^13.4.9",
"next-seo": "^6.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@catppuccin/tailwindcss": "^0.1.1",
"@svg-icons/bootstrap": "^1.87.0",
"@svg-icons/fa-brands": "^1.87.0",
"@svg-icons/octicons": "^1.87.0",
"@svgr/webpack": "^8.0.1",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "^20.3.0",
"@types/react": "^18.2.12",
"autoprefixer": "^10.4.14",
"eslint": "^8.44.0",
"eslint-config-next": "^13.4.9",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"tailwindcss": "^3.3.2",
"typescript": "^5.1.3",
"vercel": "^31.0.1"
}
}