-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
97 lines (97 loc) · 2.32 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "magazine",
"version": "0.1.0",
"description": "Next.js online magazine starter kit",
"main": "index.js",
"author": "edgarlr",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/edgarlr/magazine.git"
},
"bugs": {
"url": "https://github.com/edgarlr/magazine/issues"
},
"homepage": "https://github.com/edgarlr/magazine#readme",
"scripts": {
"dev": "next dev",
"dev:inspect": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"lint": "eslint . --ext .ts --ext .tsx --ext .js",
"lint:fix": "eslint . --ext .ts --ext .tsx --ext .js --fix",
"format": "prettier . --write",
"find:unused": "next-unused",
"prepare": "husky install"
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint",
"yarn format"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"next-unused": {
"debug": true,
"alias": {
"@lib/*": [
"lib/*"
],
"@components/*": [
"components/*"
],
"@styles/*": [
"styles/*"
]
},
"include": [
"components",
"lib",
"pages"
],
"exclude": [],
"entrypoints": [
"pages"
]
},
"dependencies": {
"body-scroll-lock": "^3.1.5",
"classnames": "^2.2.6",
"idb-keyval": "5.0.4",
"next": "^10.0.1",
"next-offline": "^5.0.3",
"next-seo": "^4.17.0",
"next-themes": "0.0.14",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-markdown": "^5.0.3"
},
"devDependencies": {
"@types/body-scroll-lock": "^2.6.1",
"@types/classnames": "^2.2.11",
"@types/gtag.js": "^0.0.4",
"@types/node": "^14.14.7",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"autoprefixer": "^10.0.2",
"eslint": "^7.13.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": ">=6",
"lint-staged": ">=10",
"next-unused": "0.0.6",
"postcss": "^8.1.10",
"postcss-nesting": "^7.0.1",
"prettier": "^2.1.2",
"tailwindcss": "^2.0.1",
"typescript": "^4.0.5"
}
}