generated from LordRonz/nextjs-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.54 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
{
"name": "lordronz-archive.github.io",
"private": true,
"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",
"format": "prettier -w .",
"format:check": "prettier -c .",
"prepare": "husky install",
"cy": "cypress open",
"cy:headless": "cypress run"
},
"dependencies": {
"@tippyjs/react": "^4.2.6",
"clsx": "^1.1.1",
"next": "12.1.6",
"react": "18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.1.0",
"react-icons": "^4.4.0",
"react-tsparticles": "^2.0.6",
"tippy.js": "^6.3.7",
"tsparticles": "^2.0.6"
},
"devDependencies": {
"@types/node": "17.0.35",
"@types/react": "18.0.14",
"@types/react-copy-to-clipboard": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^5.30.3",
"@typescript-eslint/parser": "^5.30.3",
"autoprefixer": "^10.4.7",
"cypress": "^10.0.2",
"eslint": "^8.16.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.3",
"local-cypress": "^1.2.5",
"next-sitemap": "^2.5.28",
"postcss": "^8.4.14",
"prettier": "^2.6.2",
"tailwindcss": "^3.0.24",
"typescript": "4.7.2"
}
}