-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
59 lines (59 loc) · 1.92 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
{
"name": "konstaui.com",
"private": true,
"scripts": {
"dev": "npm run build-api && npm run build-examples && npm run build-sponsors && next dev",
"build": "npm run build-api && npm run build-examples && npm run build-sponsors && TAILWIND_JIT=true next build",
"start": "next start",
"lint": "next lint",
"build-api": "node build/build-api",
"build-examples": "node build/build-examples",
"build-sponsors": "node build/build-sponsors.js",
"copy-ks": "node build/copy-kitchen-sink",
"copy-changelog": "node build/copy-changelog.js",
"release": "npm run copy-ks && npm run copy-changelog"
},
"dependencies": {
"@babel/core": "^7.15.0",
"@mapbox/rehype-prism": "^0.7.0",
"@mdx-js/loader": "^1.6.22",
"@svgr/webpack": "^5.5.0",
"@tailwindcss/typography": "^0.5.2",
"@types/react": "^17.0.19",
"autoprefixer": "^10.4.4",
"eslint-import-resolver-custom-alias": "^1.3.0",
"exec-sh": "^0.4.0",
"file-loader": "^6.2.0",
"front-matter": "^4.0.2",
"fs-extra": "^10.0.1",
"konsta": "^4.0.1",
"next": "12.1.5",
"postcss": "^8.4.12",
"prism-react-renderer": "^1.2.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"rehype-stringify": "^8.0.0",
"remark-rehype": "^8.1.0",
"sass": "^1.38.2",
"simple-functional-loader": "^1.2.1",
"strip-indent": "^4.0.0",
"tailwindcss": "^3.0.24",
"typedoc": "^0.21.9",
"typescript": "^4.4.2",
"unified": "^9.2.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "^11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.2.1",
"prettier-plugin-tailwindcss": "^0.1.8"
}
}