-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.25 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
{
"name": "taggis",
"private": true,
"version": "1.0.0",
"scripts": {
"dev": "next -p 3003",
"new": "node lib/db",
"build": "next build",
"lint": "next lint",
"fmt": "prettier --check \"{**/*,*}.{js,mjs,ts,jsx,tsx,md,json}\" --loglevel warn",
"lint:fix": "pnpm lint --fix",
"fmt:fix": "pnpm fmt --write",
"fix": "pnpm run lint:fix && pnpm run fmt:fix"
},
"pre-commit": "fix",
"license": "MIT",
"dependencies": {
"@apollo/client": "^3.6.9",
"@reach/auto-id": "^0.17.0",
"@reach/dialog": "^0.17.0",
"classnames": "^2.3.1",
"cmdk": "^0.0.4",
"graphql": "^16.6.0",
"intersection-observer": "^0.12.2",
"isomorphic-unfetch": "^3.1.0",
"lodash.debounce": "^4.0.8",
"match-sorter": "^6.3.1",
"next": "^13.1.2",
"next-themes": "^0.2.0",
"nprogress": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intersection-observer": "^9.3.5",
"swr": "^1.3.0",
"use-delayed-render": "^0.0.7"
},
"devDependencies": {
"@types/body-scroll-lock": "^3.1.0",
"@types/lodash.debounce": "^4.0.7",
"@types/node": "18.15.3",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.0.15",
"@types/react-transition-group": "^4.4.5",
"eslint": "^8.20.0",
"eslint-config-next": "^12.2.2",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"gray-matter": "^4.0.3",
"lowdb": "^3.0.0",
"marked": "^4.0.18",
"next-unused": "^0.0.6",
"open-graph-scraper": "^4.11.1",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-hover-media-feature": "^1.0.2",
"postcss-preset-env": "^7.7.2",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"prism-react-renderer": "^1.3.5",
"prompts": "^2.4.2",
"rss": "^1.2.2",
"typescript": "^4.7.4"
},
"prettier": {
"proseWrap": "always",
"semi": false,
"singleQuote": true,
"overrides": [
{
"files": "*.md",
"options": {
"proseWrap": "preserve",
"printWidth": 160
}
}
]
},
"next-unused": {
"alias": {
"@components": "components/",
"@data": "data/",
"@lib": "lib/",
"@styles": "styles/"
},
"include": [
"components",
"lib"
]
}
}