-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
59 lines (59 loc) · 1.87 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
{
"name": "fari-community",
"version": "1.0.0",
"engines": {
"node": ">=20.0.0"
},
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"preview": "bun run build && bun deploy:preview",
"beta": "bun run build && bun deploy:preview -- --alias beta",
"alpha": "bun run build && bun deploy:preview -- --alias alpha",
"prod": "bun run build && bun deploy:preview -- --prod",
"deploy:preview": "netlify deploy --site b106e8c1-1ca6-4da3-84d7-d06d7fe1ec68",
"deploy:prod": "netlify deploy --site b106e8c1-1ca6-4da3-84d7-d06d7fe1ec68 --prod",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/next-js": "^2.1.5",
"@chakra-ui/react": "^2.8.1",
"@emotion/css": "^11.11.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@nikolovlazar/chakra-ui-prose": "^1.2.1",
"@types/node": "^20.8.2",
"@types/react": "^18.2.25",
"@types/react-dom": "^18.2.10",
"eslint": "^8.50.0",
"eslint-config-next": "^13.5.4",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"lodash": "^4.17.21",
"netlify-cli": "^16.5.1",
"next": "13.5.4",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.11.0",
"remarkable": "^2.0.1",
"typescript": "5.2.2"
},
"author": "",
"license": "ISC",
"lint-staged": {
"*.{js,ts,tsx}": "bunx eslint --cache --fix",
"*.{js,css,md,ts,tsx,json}": "bunx prettier --write"
},
"devDependencies": {
"@types/lodash": "^4.14.199",
"@types/remarkable": "^2.0.4",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.31"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}