generated from LordRonz/nextjs-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.09 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
{
"name": "pesan-awanama",
"private": true,
"version": "0.0.1",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"export": "next export",
"start": "next start",
"deduplicate": "npx yarn-deduplicate && yarn install",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"lint:strict": "eslint --max-warnings=0 src",
"tsc": "tsc --pretty --noEmit --incremental false",
"format": "prettier -w .",
"format:check": "prettier -c .",
"prepare": "husky install",
"cy": "cypress open",
"cy:headless": "cypress run",
"release": "standard-version -s"
},
"dependencies": {
"@hcaptcha/react-hcaptcha": "^1.4.4",
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"clsx": "^1.2.1",
"faunadb": "^4.6.0",
"http-status": "^1.5.2",
"iron-session": "^6.1.3",
"lru-cache": "^7.13.1",
"next": "12.2.3",
"next-themes": "^0.2.0",
"nprogress": "^0.2.0",
"preact": "^10.9.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hot-toast": "^2.3.0",
"react-icons": "^4.4.0",
"react-query": "^3.39.2",
"sweetalert2": "^11.4.24",
"sweetalert2-react-content": "^4.2.0",
"tailwind-merge": "^1.5.1"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/bcrypt": "^5.0.0",
"@types/lru-cache": "^7.10.10",
"@types/node": "18.0.3",
"@types/nprogress": "^0.2.0",
"@types/react": "18.0.8",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"autoprefixer": "^10.4.7",
"cypress": "^10.3.1",
"eslint": "^8.20.0",
"eslint-config-next": "12.2.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"local-cypress": "^1.2.6",
"next-sitemap": "^2.5.28",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"standard-version": "^9.5.0",
"tailwindcss": "^3.1.6",
"typescript": "4.7.4"
}
}