-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3 KB
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
{
"name": "recoding-tech",
"description": "Recoding Tech website",
"version": "0.0.1",
"license": "MIT",
"homepage": "test.recoding.tech",
"scripts": {
"eslint": "eslint",
"eslint:init": "eslint --init",
"prepare": "husky install",
"test": "eslint src/ --fix",
"dev": "next dev",
"develop": "next dev",
"fetch": "sourcebit fetch",
"build": "next build",
"export": "next export",
"build:netlify": "next build --debug",
"start": "next start",
"generate:feed": "./src/utils/generateFeed.js",
"import:citations": "node importData.mjs",
"reset": "node deleteData.mjs"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:react/recommended"
]
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@hedgedoc/html-to-react": "^1.4.5",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.14.8",
"@mui/styles": "^5.9.2",
"@mui/x-date-pickers": "^6.16.1",
"@portabletext/react": "^3.0.7",
"@sanity/asset-utils": "^1.2.3",
"@sanity/block-content-to-react": "^3.0.0",
"@sanity/client": "^3.3.2",
"@sanity/image-url": "^1.0.1",
"@snekcode/mui-search-bar": "^1.1.0",
"babel-runtime": "^6.26.0",
"classnames": "^2.3.1",
"dotenv": "^16.0.1",
"feed": "^4.2.2",
"html-to-text": "^9.0.5",
"isomorphic-dompurify": "^1.8.0",
"jsdom": "^22.1.0",
"limiter": "2.1.0",
"lodash": "^4.17.21",
"luxon": "^3.0.1",
"marked": "^4.0.18",
"next": "^14.2.5",
"next-sanity": "^0.6.0",
"next-seo": "^6.4.0",
"next-transpile-modules": "^10.0.1",
"node-fetch": "^3.2.10",
"node-sass-utils": "^1.1.3",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.34.0",
"react-slick": "^0.29.0",
"react-tweet": "^3.1.1",
"regenerator-runtime": "^0.13.9",
"sass": "^1.54.0",
"sass-loader": "^13.0.2",
"slick-carousel": "^1.8.1",
"slugify": "^1.6.5",
"sourcebit": "^0.11.1",
"sourcebit-source-sanity": "https://github.com/throneless-tech/sourcebit-source-sanity.git#master",
"sourcebit-target-next": "^0.8.3",
"sprintf-js": "^1.1.2",
"title-case": "^3.0.3",
"xml-escape": "^1.1.0"
},
"devDependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "^7.18.9",
"@babel/eslint-parser": "^7.18.9",
"@babel/node": "^7.18.9",
"@babel/plugin-transform-runtime": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@netlify/plugin-nextjs": "5.0.0",
"@next/eslint-plugin-next": "^12.2.3",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.1",
"husky": "^8.0.1",
"prettier": "^2.7.1"
}
}