-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
160 lines (160 loc) · 3.86 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"name": "stack",
"version": "0.1.0",
"license": "MIT",
"repository": "https://github.com/BSA-US/stack.git",
"main": "index.js",
"contributors": [
"replygirl <moon@moon.fyi>"
],
"scripts": {
"dev": "next",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.json,.jsonc",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@notionhq/client": "^0.4.6",
"@replygirl/change-case-object": "^1.3.0",
"@replygirl/tc": "^4.0.1",
"autoprefixer": "^10.4.0",
"classnames": "^2.3.1",
"destyle.css": "^2.0.2",
"isomorphic-unfetch": "^3.1.0",
"next": "^12.0.3",
"notion-utils": "^4.10.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remark": "^13.0.0",
"remark-react": "^8.0.0",
"swr": "^1.0.1"
},
"devDependencies": {
"@antfu/eslint-config": "^0.10.0",
"@babel/core": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@next/eslint-plugin-next": "^12.0.3",
"@types/node": "^16.11.7",
"@types/react": "^17.0.34",
"@vercel/node": "^1.12.1",
"@windicss/animations": "^1.0.8",
"@windicss/plugin-heropatterns": "^0.0.8",
"@windicss/plugin-interaction-variants": "^1.0.0",
"@windicss/plugin-question-mark": "^0.1.1",
"@windicss/plugin-scrollbar": "^1.2.3",
"babel-loader": "^8.2.3",
"babel-plugin-react-require": "^3.1.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.4.1",
"raw-loader": "^4.0.2",
"typescript": "^4.4.4",
"windicss-webpack-plugin": "^1.5.6"
},
"eslintConfig": {
"extends": [
"@antfu/eslint-config",
"plugin:prettier/recommended"
],
"plugins": [
"prettier",
"sort-keys-fix",
"@next/next"
],
"rules": {
"import/order": [
"error",
{
"alphabetize": {
"order": "asc",
"caseInsensitive": false
},
"groups": [
"builtin",
"external",
"internal",
[
"parent",
"sibling",
"index"
],
"object",
"unknown"
],
"newlines-between": "always",
"pathGroups": [
{
"pattern": "~/**",
"group": "internal"
}
],
"pathGroupsExcludedImportTypes": [
"builtin",
"object"
]
}
],
"prettier/prettier": "error",
"react/prop-types": "off",
"react/react-in-jsx-scope": "off",
"sort-keys-fix/sort-keys-fix": [
"error",
"asc",
{
"caseSensitive": true,
"natural": true
}
],
"space-before-function-paren": [
"error",
{
"anonymous": "always",
"named": "never",
"asyncArrow": "always"
}
]
},
"globals": {}
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"quoteProps": "as-needed",
"jsxSingleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "avoid",
"requirePragma": false,
"insertPragma": false,
"proseWrap": "preserve",
"htmlWhitespaceSensitivity": "css",
"vueIndentScriptAndStyle": false,
"endOfLine": "lf",
"embeddedLanguageFormatting": "auto"
},
"postcss": {
"plugins": [
"postcss-flexbugs-fixes",
[
"postcss-preset-env",
{
"autoprefixer": {
"flexbox": "no-2009"
},
"stage": 1,
"features": {
"custom-properties": false
}
}
]
]
}
}