-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
88 lines (88 loc) · 2.5 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
{
"homepage": "https://systemstraining.vercel.app",
"name": "systemstraining.vercel.app",
"description": "Quick search for IBM Power Systems, IBM Storage and IBM Z technical content.",
"version": "1.0.0",
"author": {
"name": "IBM Systems Training",
"email": "urajan@ncsu.edu",
"url": "https://systemstraining.vercel.app"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/upenr/ibmsystems-search.git"
},
"scripts": {
"dev": "set NODE_OPTIONS=--openssl-legacy-provider && rimraf .next && next dev",
"build": "set NODE_OPTIONS=--openssl-legacy-provider && rimraf .next && next build",
"start": "set NODE_OPTIONS=--openssl-legacy-provider && next start",
"prettier": "prettier --write \"**/*.{html,js,json,md,mdx,yml}\"",
"postinstall": "patch-package"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{html,js,json,md,mdx,yml}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@chakra-ui/icons": "^1.0.1",
"@chakra-ui/react": "^1.6.1",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@mailchimp/mailchimp_marketing": "^3.0.41",
"@mapbox/rehype-prism": "0.5.0",
"@mdx-js/loader": "1.6.21",
"@mdx-js/react": "1.6.21",
"@next/mdx": "10.0.3",
"babel-plugin-import-glob-array": "0.2.0",
"big.js": "6.0.2",
"comma-number": "2.0.1",
"date-fns": "2.16.1",
"firebase": "^8.1.1",
"firebase-admin": "^9.4.1",
"framer-motion": "^4.1.13",
"iframe-resizer-react": "^1.0.4",
"isomorphic-unfetch": "^3.1.0",
"mdx-prism": "0.3.1",
"medium-to-markdown": "0.0.3",
"moment": "^2.29.1",
"next": "^10.2.0",
"next-google-fonts": "1.2.1",
"next-mdx-enhanced": "^5.0.0",
"next-seo": "^4.17.0",
"patch-package": "6.2.2",
"postinstall-postinstall": "2.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.1.0",
"react-share": "^4.3.1",
"react-tweet-embed": "1.2.2",
"reading-time": "1.2.1",
"remark-autolink-headings": "6.0.1",
"remark-capitalize": "1.1.0",
"remark-code-titles": "0.1.1",
"remark-slug": "6.0.0",
"swr": "0.3.9",
"unsplash-js": "6.3.0"
},
"devDependencies": {
"gh-pages": "^3.1.0",
"globby": "11.0.1",
"prettier": "2.2.0",
"rehype": "11.0.0",
"rimraf": "^3.0.2"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none"
}
}