-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.14 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
{
"name": "site",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start"
},
"dependencies": {
"@tailwindcss/ui": "^0.7.2",
"dompurify": "^2.2.3",
"gray-matter": "^4.0.2",
"marked": "^1.2.6",
"next": "10.0.3",
"prism-react-renderer": "^1.1.1",
"prismjs": "^1.22.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-transition-group": "^4.4.1",
"tailwindcss": "^2.0.1",
"tailwindcss-hyphens": "^0.1.0"
},
"devDependencies": {
"@types/node": "^14.14.10",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"autoprefixer": "^10.0.4",
"eslint": "^7.15.0",
"eslint-plugin-react": "^7.21.5",
"husky": "^4.3.4",
"lint-staged": "^10.5.3",
"postcss": "^8.1.14",
"postcss-import": "^13.0.0",
"ts-standard": "^9.0.0",
"typescript": "^4.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./{pages,components,lib}/*.{tsx,ts}": [
"eslint --fix"
]
}
}