-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
76 lines (76 loc) · 2.26 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
{
"name": "@diplodoc/client",
"version": "3.1.5",
"description": "",
"main": "./build/server/app.js",
"scripts": {
"build": "NODE_ENV=production npm run _build && tsc --emitDeclarationOnly --outDir build",
"build:dev": "NODE_ENV=development npm run _build",
"build:watch": "NODE_ENV=development npm run _build -- --watch",
"_build": "webpack --config ./webpack/config.js",
"prepublishOnly": "rm -rf build && npm ci --no-workspaces && npm run build",
"test": "exit 0",
"typecheck": "tsc -p . --noEmit",
"lint": "lint update && lint",
"lint:fix": "lint update && lint fix",
"pre-commit": "lint update && lint-staged",
"prepare": "husky || true"
},
"author": "",
"license": "ISC",
"engines": {
"node": ">=18",
"npm": ">=9.*"
},
"exports": {
".": {
"types": "./build/index.d.ts",
"style": "./build/client/app.css",
"style-rtl": "./build/app.rtl.css",
"default": "./build/client/app.js"
},
"./ssr": {
"types": "./build/index.server.d.ts",
"default": "./build/server/app.js"
},
"./manifest": {
"types": "./manifest.d.ts",
"default": "./build/client/manifest.json"
},
"./styles": "./build/client/app.css"
},
"dependencies": {
"@diplodoc/latex-extension": "^1.3.2",
"@diplodoc/mermaid-extension": "^1.3.1",
"@diplodoc/transform": "^4.32.4",
"@gravity-ui/icons": "^2.11.0",
"url": "^0.11.0"
},
"devDependencies": {
"@diplodoc/babel-preset": "^1.0.3",
"@diplodoc/components": "^4.15.4",
"@diplodoc/lint": "^1.1.1",
"@diplodoc/openapi-extension": "^2.3.3",
"@diplodoc/tsconfig": "^1.0.2",
"@gravity-ui/page-constructor": "^5.22.0",
"@gravity-ui/uikit": "^6.1.1",
"@types/react": "^18.2.7",
"@types/react-dom": "^18.2.4",
"babel-loader": "^9.1.2",
"bem-cn-lite": "^4.1.0",
"css-loader": "^6.8.1",
"mini-css-extract-plugin": "^2.7.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-svg-loader": "^3.0.0",
"rtlcss": "^4.1.1",
"sass": "^1.69.5",
"sass-loader": "^16.0.2",
"style-loader": "^3.3.3",
"typescript": "^5.6.2",
"webpack": "^5.84.1",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^5.1.1",
"webpack-manifest-plugin": "^5.0.0"
}
}