forked from farirpgs/fari-community
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.78 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
{
"name": "fari-community",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "18"
},
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"lint": "next lint",
"preview": "npm run build && npm run deploy:preview",
"beta": "npm run build && npm run deploy:preview -- --alias beta",
"alpha": "npm run build && npm run deploy:preview -- --alias alpha",
"prod": "npm run build && npm run 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.0.17",
"@chakra-ui/next-js": "^2.0.1",
"@chakra-ui/react": "^2.5.2",
"@emotion/css": "^11.10.6",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@nikolovlazar/chakra-ui-prose": "^1.2.1",
"@types/node": "^18.15.5",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"eslint": "^8.36.0",
"eslint-config-next": "^13.2.4",
"framer-motion": "^10.8.5",
"husky": "^8.0.1",
"lint-staged": "^13.2.0",
"lodash": "^4.17.21",
"netlify-cli": "^13.2.1",
"next": "13.2.5-canary.12",
"prettier": "^2.8.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"remarkable": "^2.0.1",
"typescript": "4.9.3"
},
"author": "",
"license": "ISC",
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{js,css,md,ts,tsx,json}": "prettier --write"
},
"devDependencies": {
"@types/lodash": "^4.14.191",
"@types/remarkable": "^2.0.3",
"autoprefixer": "^10.4.14",
"postcss": "^8.4.21"
}
}