-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 1.56 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
{
"name": "dev-cheats",
"version": "1.0.0",
"homepage": "https://dev-cheats.vercel.app/",
"description": "An interactive cheatsheet for various command line tools",
"repository": "https://github.com/excalith/dev-cheats.git",
"license": "MIT",
"private": false,
"scripts": {
"prepare": "husky install",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier . --write",
"test": "ava"
},
"dependencies": {
"@next/font": "^13.1.6",
"@vercel/og": "^0.1.0",
"axios": "^1.3.3",
"next": "13.1.4",
"next-absolute-url": "^1.2.2",
"next-global-css": "^1.3.1",
"next-seo": "^5.15.0",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.7.1",
"react-spinners": "^0.13.8"
},
"devDependencies": {
"autoprefixer": "^10.4.13",
"ava": "^5.2.0",
"eslint": "<8.32.0",
"eslint-config-next": "13.1.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"tailwindcss": "^3.2.7",
"tw-colors": "^1.1.3"
},
"browserslist": {
"production": [
">10%",
"not dead",
"not ie 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"public/data/*.json": [
"eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "node ./"
}
}
}