This repository has been archived by the owner on Nov 23, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
98 lines (98 loc) · 2.97 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
89
90
91
92
93
94
95
96
97
98
{
"dependencies": {
"@emotion/react": "11.8.2",
"@emotion/styled": "11.8.1",
"@mdx-js/react": "2.1.0",
"@mui/icons-material": "^5.5.1",
"@mui/material": "^5.5.2",
"clsx": "1.1.1",
"core-js": "3.21.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-flow-renderer": "10.2.2",
"react-router-dom": "5.3.1",
"regenerator-runtime": "0.13.9",
"tslib": "2.3.1"
},
"devDependencies": {
"@babel/plugin-transform-typescript": "^7.16.8",
"@commitlint/cli": "16.3.0",
"@commitlint/config-conventional": "16.2.4",
"@emotion/babel-plugin": "11.7.2",
"@nrwl/cli": "13.9.4",
"@nrwl/cypress": "13.9.4",
"@nrwl/eslint-plugin-nx": "13.9.4",
"@nrwl/jest": "13.9.4",
"@nrwl/js": "13.9.4",
"@nrwl/linter": "13.9.4",
"@nrwl/nx-cloud": "13.1.6",
"@nrwl/react": "13.9.4",
"@nrwl/tao": "13.9.4",
"@nrwl/web": "13.9.4",
"@nrwl/workspace": "13.9.4",
"@testing-library/react": "12.1.4",
"@testing-library/react-hooks": "7.0.2",
"@types/jest": "27.4.1",
"@types/node": "17.0.21",
"@types/react": "17.0.45",
"@types/react-dom": "17.0.14",
"@types/react-router-dom": "5.3.3",
"@typescript-eslint/eslint-plugin": "5.16.0",
"@typescript-eslint/parser": "5.16.0",
"babel-jest": "27.5.1",
"compression-webpack-plugin": "^9.2.0",
"cypress": "9.5.2",
"eslint": "8.11.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.3.0",
"husky": "7.0.4",
"jest": "27.5.1",
"lerna": "4.0.0",
"lint-staged": "12.3.7",
"node-polyfill-webpack-plugin": "^1.1.4",
"npm-run-all": "4.1.5",
"nx": "^13.9.4",
"patch-package": "6.4.7",
"prettier": "2.6.2",
"process": "^0.11.10",
"react-test-renderer": "17.0.2",
"standard-version": "9.3.2",
"ts-jest": "27.1.3",
"typescript": "4.6.4",
"util": "^0.12.4",
"webpack-bundle-analyzer": "^4.5.0",
"yaml-crypt": "0.7.6",
"zx": "6.0.7"
},
"license": "GPL-3.0",
"lint-staged": {
"*.{yaml,json,md}": "prettier --write",
"*.{js,jsx,tsx,ts,css}": [
"prettier --write",
"eslint --cache --fix"
]
},
"name": "dstack-js",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"build": "nx run-many --all --target=build",
"lint": "nx run-many --all --target=lint",
"prepare": "npm-run-all prepare:hooks",
"prepare:hooks": "husky install",
"release": "standard-version --bumpFiles package.json packages/lib/package.json packages/ipfs/package.json packages/relay/package.json packages/transport/package.json && scripts/publish",
"serve": "nx run-many --all --verbose --target=serve"
},
"version": "0.2.50",
"workspaces": [
"packages/*",
"docs"
]
}