-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.94 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
{
"name": "next-stitches",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "yarn run eslint src",
"lint --fix": "eslint --ext .js,.jsx,.ts,.tsx,.mdx . --fix",
"cz": "./node_modules/cz-customizable/standalone.js"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.0.3",
"@radix-ui/react-dropdown-menu": "^2.0.1",
"@radix-ui/react-icons": "^1.1.1",
"@radix-ui/react-scroll-area": "^1.0.2",
"@radix-ui/react-select": "^1.1.2",
"@radix-ui/react-toast": "^1.1.2",
"@tanstack/react-query": "^4.19.1",
"@toast-ui/editor-plugin-color-syntax": "^3.1.0",
"@toast-ui/react-editor": "^3.2.3",
"@vanilla-extract/css": "^1.9.5",
"@vanilla-extract/recipes": "^0.3.0",
"@vanilla-extract/sprinkles": "^1.5.1",
"axios": "^1.2.0",
"contentlayer": "^0.2.6",
"dayjs": "^1.11.7",
"jotai": "^2.0.3",
"lodash": "^4.17.21",
"next": "12.3.1",
"next-contentlayer": "^0.2.6",
"next-seo": "^5.15.0",
"qs": "^6.11.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-indiana-drag-scroll": "^2.2.0",
"react-spotify-web-playback": "^0.13.2",
"rehype-autolink-headings": "^6.1.1",
"rehype-code-titles": "^1.2.0",
"rehype-slug": "^5.1.0",
"rehype-stringify": "^9.0.3",
"remark": "^14.0.2",
"remark-breaks": "^3.0.2",
"remark-highlight.js": "^7.0.1",
"remark-html": "^15.0.2",
"remark-math": "^5.1.1",
"remark-mdx": "^2.3.0",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"sass": "^1.55.0",
"spotify-web-api-node": "^5.0.2",
"unified": "^10.1.2"
},
"devDependencies": {
"@svgr/webpack": "^6.4.0",
"@types/lodash": "^4.14.191",
"@types/node": "18.8.3",
"@types/qs": "^6.9.7",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@types/react-lottie": "^1.2.6",
"@types/spotify-web-api-node": "^5.0.7",
"@vanilla-extract/next-plugin": "^2.1.1",
"classnames": "^2.3.2",
"css-loader": "^6.7.3",
"cz-customizable": "^7.0.0",
"eslint": "^8.35.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.7.0",
"eslint-config-react-app": "^7.0.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "^2.8.4",
"react-lottie-player": "^1.5.4",
"stylelint": "^14.13.0",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard-scss": "^5.0.0",
"stylelint-declaration-strict-value": "^1.9.0",
"typescript": "4.8.4"
},
"config": {
"cz-customizable": {
"config": "cz-config.js"
}
}
}