-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) Β· 1.81 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
{
"name": "vule-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"test": "jest",
"test:coverage": "jest --coverage",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write .",
"test-all": "npm run check-format && npm run check-lint && npm run check-types",
"update-deps": "npx --yes npm-check-updates -u && yarn"
},
"dependencies": {
"@fontsource/inter": "^4.5.12",
"@fontsource/roboto-mono": "^4.5.8",
"@giscus/react": "^2.2.0",
"@mdi/js": "^7.0.96",
"@mdi/react": "^1.6.1",
"@stitches/react": "^1.2.8",
"@uiball/loaders": "^1.2.6",
"fathom-client": "^3.5.0",
"feather-icons": "^4.29.0",
"next": "12.2.4",
"next-contentlayer": "^0.2.7",
"next-seo": "^5.5.0",
"next-themes": "^0.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"swr": "^1.3.0"
},
"devDependencies": {
"@svgr/webpack": "^6.3.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@types/node": "18.6.5",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-next": "12.2.4",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.1",
"husky": "^8.0.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"prettier": "^2.7.1",
"sass": "^1.54.5",
"typescript": "*"
}
}