-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.17 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
76
77
78
79
80
{
"name": "bootsified-2023-clean",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"ngrok": "ngrok http 3000"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.0.2",
"@radix-ui/react-popover": "1.0.3",
"@svgr/webpack": "^6.5.1",
"@types/node": "18.13.0",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@types/uuid": "^9.0.0",
"@vercel/analytics": "^0.1.10",
"classnames": "^2.3.2",
"clsx": "^1.2.1",
"eslint": "8.33.0",
"eslint-config-next": "^13.1.6",
"framer-motion": "^9.0.2",
"get-youtube-id": "^1.0.1",
"next": "^13.2.5-canary.3",
"nprogress": "^0.2.0",
"photoswipe": "^5.3.5",
"pluralize": "^8.0.0",
"postcss-loader": "^7.0.2",
"postcss-reporter": "^7.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-headroom": "^3.2.1",
"react-intersection-observer": "^9.4.1",
"react-lite-youtube-embed": "^2.3.52",
"react-photoswipe-gallery": "^2.2.3",
"react-player": "^2.11.2",
"react-youtube": "^10.1.0",
"sharp": "^0.31.3",
"slug": "^8.2.2",
"swr": "^2.0.3",
"typescript": "4.9.5",
"uuid": "^9.0.0",
"what-input": "^5.2.12"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@types/nprogress": "^0.2.0",
"@types/pluralize": "^0.0.29",
"@types/react-headroom": "^3.2.0",
"@types/slug": "^5.0.3",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.2",
"cssnano": "^5.1.14",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"postcss-preset-env": "^8.0.1",
"prettier": "^2.8.3",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-standard": "^29.0.0",
"stylelint-order": "^6.0.1",
"stylelint-prettier": "^2.0.0"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": "eslint --cache --fix",
"*.{css}": "stylelint --fix",
"*.{html,md,json}": "prettier --write"
},
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
]
}