-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.09 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.09 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
{
"name": "docusaurus-plugin-alumni",
"version": "0.0.0",
"private": true,
"main": "lib/index.js",
"types": "src/types.d.ts",
"scripts": {
"build": "yarn build:server && yarn build:browser && yarn build:copy && yarn build:format",
"build:server": "tsc --project tsconfig.server.json",
"build:browser": "tsc --project tsconfig.browser.json",
"build:copy": "node copyUntypedFiles.js",
"build:format": "prettier --config ../../../.prettierrc --write \"lib/**/*.js\"",
"postinstall": "yarn build"
},
"dependencies": {
"@docusaurus/theme-common": "2.0.0-beta.21",
"@docusaurus/utils": "2.0.0-beta.21",
"@docusaurus/utils-validation": "2.0.0-beta.21",
"fs-extra": "11.1.1",
"js-yaml": "4.1.0",
"prettier": "3.0.3"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "latest",
"@docusaurus/types": "latest",
"@types/fs-extra": "11.0.3",
"@types/js-yaml": "4.0.9",
"@types/node": "18.18.4",
"@types/react": "18.2.32",
"react": "18.2.0",
"typescript": "4.9.5"
},
"peerDependencies": {
"react": "17.x || 18.x"
}
}