-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.83 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
{
"name": "evil-nextjs-boilerplate",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "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": "npx next lint --fix",
"build-types": "tsc --noEmit --pretty",
"prepare": "husky install"
},
"dependencies": {
"@fontsource/nunito-sans": "^4.5.6",
"flowbite": "^1.5.5",
"flowbite-react": "^0.3.7",
"framer-motion": "^6.5.1",
"next": "^12.1.4",
"next-seo": "^5.4.0",
"next-themes": "^0.1.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-icons": "^4.4.0",
"zustand": "^4.1.5"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.1.4",
"@types/node": "^17.0.23",
"@types/react": "^17.0.44",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"autoprefixer": "^10.4.4",
"cross-env": "^7.0.3",
"cssnano": "^5.1.7",
"cypress": "^9.5.4",
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^12.1.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tailwindcss": "^3.5.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.12",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"tailwindcss": "^3.0.23",
"typescript": "^4.6.3"
},
"license": "MIT"
}