-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.54 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.54 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
{
"name": "@diplodoc/diplodoc",
"version": "1.0.0",
"description": "Meta package for Diplodoc platform development",
"main": "index.js",
"type": "module",
"workspaces": [
"devops/*",
"extensions/*",
"extensions/**/example",
"packages/*"
],
"scripts": {
"watch": "scripts/watch.js",
"build": "nx build @diplodoc/testpack",
"test": "nx test @diplodoc/testpack",
"reset": "npx zx scripts/reset.js",
"pulse": "npx zx scripts/pulse.js",
"deps": "npx zx scripts/deps.js",
"bootstrap": "scripts/bootstrap.sh",
"codespaces": "scripts/codespaces.sh",
"git:init": "scripts/git-init.sh",
"git:apply": "scripts/git-apply.sh",
"git:head": "scripts/git-apply.sh master --unsafe",
"analyze-deps": "scripts/node-version-checker.sh",
"check-submodules": "scripts/check-submodules.sh",
"add-submodules": "scripts/add-submodules.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/diplodoc-platform/diplodoc.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/diplodoc-platform/diplodoc/issues"
},
"homepage": "https://github.com/diplodoc-platform/diplodoc#readme",
"devDependencies": {
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"nx": "^20.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zx": "^8.8.5"
},
"overrides": {
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.1"
},
"dependencies": {
"@swc/helpers": "^0.5.17",
"typescript": "^5.4.5"
}
}