@dao42/d42paas-front 0.7.56 → 0.7.57
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/DaoPaaS.es.js +105195 -99633
- package/dist/DaoPaaS.umd.js +1852 -1808
- package/dist/editor.d.ts +678 -644
- package/dist/style.css +2 -2
- package/package.json +204 -204
package/package.json
CHANGED
|
@@ -1,204 +1,204 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@dao42/d42paas-front",
|
|
3
|
-
"version": "0.7.
|
|
4
|
-
"description": "> TODO: description",
|
|
5
|
-
"author": "eric183 <kk297466058@gmail.com>",
|
|
6
|
-
"homepage": "https://github.com/dao42/d42paas_frontend#readme",
|
|
7
|
-
"license": "ISC",
|
|
8
|
-
"main": "./dist/DaoPaaS.umd.js",
|
|
9
|
-
"module": "./dist/DaoPaaS.es.js",
|
|
10
|
-
"types": "./dist/editor.d.ts",
|
|
11
|
-
"exports": {
|
|
12
|
-
".": {
|
|
13
|
-
"import": "./dist/DaoPaaS.es.js",
|
|
14
|
-
"require": "./dist/DaoPaaS.umd.js"
|
|
15
|
-
},
|
|
16
|
-
"./style.css": {
|
|
17
|
-
"import": "./dist/style.css",
|
|
18
|
-
"require": "./dist/style.css"
|
|
19
|
-
},
|
|
20
|
-
"./assets/": "./dist/assets/"
|
|
21
|
-
},
|
|
22
|
-
"directories": {
|
|
23
|
-
"lib": "lib",
|
|
24
|
-
"src": "src"
|
|
25
|
-
},
|
|
26
|
-
"scripts": {
|
|
27
|
-
"prebuild": "rimraf dist",
|
|
28
|
-
"webpack": "cross-env TS_NODE_PROJECT=\"tsconfig.dev.json\" webpack --config ./config/webpack.prod.config.ts",
|
|
29
|
-
"start:web": "yarn vite && yarn workNameSpaceToFix && yarn typedoc",
|
|
30
|
-
"storybook": "start-storybook -p 6006",
|
|
31
|
-
"build-storybook": "build-storybook -o .storybook/dist",
|
|
32
|
-
"dev:disble": "cross-env TS_NODE_PROJECT=\"tsconfig.dev.json\" webpack serve --open --config ./config/webpack.dev.config.ts",
|
|
33
|
-
"analyse": "cross-env NODE_ENV=production TS_NODE_PROJECT=\"tsconfig.json\" webpack --config ./config/webpack.analytics.config.js",
|
|
34
|
-
"dev": "vite serve --host --config ./config/vite.config.ts",
|
|
35
|
-
"dev:patch": "vite serve --host --config ./config/vite.dev.config.ts",
|
|
36
|
-
"vite": "cross-env NODE_ENV=production vite build --config ./config/vite.config.ts && yarn run copyTS",
|
|
37
|
-
"typedoc": "npx typedoc --tsconfig ./doc.tsconfig.json",
|
|
38
|
-
"fix": "eslint --fix --ext .jsx src/**",
|
|
39
|
-
"copyTS": "shx cp ./src/types/editor.d.ts ./dist",
|
|
40
|
-
"np": "npm publish --access-public",
|
|
41
|
-
"patch": "yarn vite && npm version patch && yarn clean",
|
|
42
|
-
"test": "jest --verbose",
|
|
43
|
-
"clean": "node config/patchClean.js",
|
|
44
|
-
"workNameSpaceToFix": "node ./config/workNameSpaceToFix.js"
|
|
45
|
-
},
|
|
46
|
-
"dependencies": {
|
|
47
|
-
"@dao42/d42paas_rtc": "^0.1.8"
|
|
48
|
-
},
|
|
49
|
-
"devDependencies": {
|
|
50
|
-
"@babel/core": "^7.9",
|
|
51
|
-
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
52
|
-
"@babel/plugin-transform-runtime": "^7.15.0",
|
|
53
|
-
"@babel/preset-env": "^7.15.4",
|
|
54
|
-
"@babel/preset-react": "^7.14.5",
|
|
55
|
-
"@babel/preset-typescript": "^7.15.0",
|
|
56
|
-
"@babel/runtime": "^7.15.4",
|
|
57
|
-
"@emotion/babel-plugin": "^11.3.0",
|
|
58
|
-
"@emotion/babel-preset-css-prop": "^11.2.0",
|
|
59
|
-
"@emotion/core": "^11.0.0",
|
|
60
|
-
"@emotion/css": "^11.1.3",
|
|
61
|
-
"@emotion/eslint-plugin": "^11.2.0",
|
|
62
|
-
"@emotion/react": "^11.4.1",
|
|
63
|
-
"@emotion/styled": "^11.3.0",
|
|
64
|
-
"@fullhuman/postcss-purgecss": "^4.0.3",
|
|
65
|
-
"@headlessui/react": "^1.4.3",
|
|
66
|
-
"@loadable/component": "^5.15.2",
|
|
67
|
-
"@react-spring/types": "^9.2.4",
|
|
68
|
-
"@storybook/addon-actions": "^6.3.12",
|
|
69
|
-
"@storybook/addon-essentials": "^6.3.12",
|
|
70
|
-
"@storybook/addon-links": "^6.3.12",
|
|
71
|
-
"@storybook/addon-postcss": "^2.0.0",
|
|
72
|
-
"@storybook/manager-webpack5": "^6.3.12",
|
|
73
|
-
"@storybook/react": "^6.3.12",
|
|
74
|
-
"@tailwindcss/typography": "^0.5.2",
|
|
75
|
-
"@types/css-minimizer-webpack-plugin": "^3.0.2",
|
|
76
|
-
"@types/dotenv-webpack": "^7.0.3",
|
|
77
|
-
"@types/fs-extra": "^9.0.13",
|
|
78
|
-
"@types/jest": "^27.0.2",
|
|
79
|
-
"@types/loadable__component": "^5.13.4",
|
|
80
|
-
"@types/lodash": "^4.14.175",
|
|
81
|
-
"@types/mini-css-extract-plugin": "^2.4.0",
|
|
82
|
-
"@types/ot": "^0.0.5",
|
|
83
|
-
"@types/react": "^17.0.24",
|
|
84
|
-
"@types/react-dom": "^17.0.9",
|
|
85
|
-
"@types/tailwindcss": "^2.2.4",
|
|
86
|
-
"@types/uuid": "^8.3.1",
|
|
87
|
-
"@vitejs/plugin-react": "^1.0.7",
|
|
88
|
-
"autoprefixer": "^10.0.2",
|
|
89
|
-
"babel-core": "^6.26.3",
|
|
90
|
-
"babel-loader": "^8.2.2",
|
|
91
|
-
"concurrently": "^6.3.0",
|
|
92
|
-
"css-loader": "^6.5.1",
|
|
93
|
-
"css-minimizer-webpack-plugin": "^3.1.4",
|
|
94
|
-
"cssnano": "^5.0.11",
|
|
95
|
-
"dayjs": "^1.10.7",
|
|
96
|
-
"devicon": "^2.14.0",
|
|
97
|
-
"dexie": "^3.2.0",
|
|
98
|
-
"dotenv": "^10.0.0",
|
|
99
|
-
"dotenv-webpack": "^7.0.3",
|
|
100
|
-
"file-loader": "^6.2.0",
|
|
101
|
-
"fs-extra": "^10.0.0",
|
|
102
|
-
"glob-all": "^3.2.1",
|
|
103
|
-
"html-webpack-plugin": "^5.3.2",
|
|
104
|
-
"idb": "^6.1.5",
|
|
105
|
-
"jest": "27.0.6",
|
|
106
|
-
"less": "^4.1.2",
|
|
107
|
-
"leva": "^0.9.18",
|
|
108
|
-
"lodash": "^4.17.21",
|
|
109
|
-
"lottie-web": "^5.7.14",
|
|
110
|
-
"mini-css-extract-plugin": "^2.4.5",
|
|
111
|
-
"monaco-editor": "^0.31.0",
|
|
112
|
-
"monaco-editor-core": "^0.31.0",
|
|
113
|
-
"ninja-keys": "^1.1.12",
|
|
114
|
-
"normalize-url": "^7.0.2",
|
|
115
|
-
"ot": "^0.0.15",
|
|
116
|
-
"postcss": "^8.0.9",
|
|
117
|
-
"postcss-import": "^14.0.2",
|
|
118
|
-
"postcss-nesting": "^10.1.0",
|
|
119
|
-
"prettier": "^2.3.2",
|
|
120
|
-
"react": "^17.0.2",
|
|
121
|
-
"react-complex-tree": "^1.1.2",
|
|
122
|
-
"react-
|
|
123
|
-
"react-dnd
|
|
124
|
-
"react-
|
|
125
|
-
"react-
|
|
126
|
-
"react-
|
|
127
|
-
"react-markdown": "^8.0.0",
|
|
128
|
-
"react-router-dom": "^5.3.0",
|
|
129
|
-
"react-split-pane": "^0.1.92",
|
|
130
|
-
"react-spring": "^9.2.4",
|
|
131
|
-
"reconnecting-websocket": "^4.4.0",
|
|
132
|
-
"reflect-metadata": "^0.1.13",
|
|
133
|
-
"rehype-katex": "^6.0.2",
|
|
134
|
-
"remark-math": "^5.1.1",
|
|
135
|
-
"rimraf": "^3.0.2",
|
|
136
|
-
"rsuite": "
|
|
137
|
-
"rxjs": "^7.2.0",
|
|
138
|
-
"sass": "^1.43.2",
|
|
139
|
-
"sass-loader": "^12.2.0",
|
|
140
|
-
"socket.io": "^4.2.0",
|
|
141
|
-
"socket.io-client": "^4.2.0",
|
|
142
|
-
"source-map-loader": "^3.0.0",
|
|
143
|
-
"speed-measure-webpack-plugin": "^1.5.0",
|
|
144
|
-
"style-loader": "^3.3.1",
|
|
145
|
-
"stylis": "^4.0.10",
|
|
146
|
-
"tailwindcss": "^3.0.7",
|
|
147
|
-
"terser-webpack-plugin": "^5.2.5",
|
|
148
|
-
"three": "^0.132.2",
|
|
149
|
-
"ts-jest": "^27.1.3",
|
|
150
|
-
"ts-loader": "^9.2.5",
|
|
151
|
-
"ts-node": "^10.0.0",
|
|
152
|
-
"tsconfig-paths-webpack-plugin": "^3.5.1",
|
|
153
|
-
"typedoc": "^0.22.12",
|
|
154
|
-
"typescript": "4.5",
|
|
155
|
-
"uuid": "^8.3.2",
|
|
156
|
-
"vite": "^2.7.2",
|
|
157
|
-
"vite-plugin-html": "^3.0.6",
|
|
158
|
-
"webpack": "^5.52.0",
|
|
159
|
-
"webpack-bundle-analyzer": "^4.5.0",
|
|
160
|
-
"webpack-cli": "^4.9.1",
|
|
161
|
-
"webpack-dashboard": "^3.3.6",
|
|
162
|
-
"webpack-dev-server": "^4.1.0",
|
|
163
|
-
"xterm": "^4.13.0",
|
|
164
|
-
"xterm-addon-attach": "^0.6.0",
|
|
165
|
-
"xterm-addon-fit": "^0.5.0",
|
|
166
|
-
"zustand": "^3.7.0"
|
|
167
|
-
},
|
|
168
|
-
"files": [
|
|
169
|
-
"dist"
|
|
170
|
-
],
|
|
171
|
-
"repository": {
|
|
172
|
-
"type": "git",
|
|
173
|
-
"url": "git+https://github.com/dao42/d42paas_frontend.git"
|
|
174
|
-
},
|
|
175
|
-
"bugs": {
|
|
176
|
-
"url": "https://github.com/dao42/d42paas_frontend/issues"
|
|
177
|
-
},
|
|
178
|
-
"jest": {
|
|
179
|
-
"globals": {
|
|
180
|
-
"ts-jest": {
|
|
181
|
-
"tsConfig": "tsconfig.json"
|
|
182
|
-
}
|
|
183
|
-
},
|
|
184
|
-
"preset": "ts-jest",
|
|
185
|
-
"testMatch": [
|
|
186
|
-
"**/__tests__/**/*.ts?(x)",
|
|
187
|
-
"**/?(*.)+(spec|test).ts?(x)"
|
|
188
|
-
],
|
|
189
|
-
"moduleNameMapper": {
|
|
190
|
-
"^.+\\.css$": "identity-obj-proxy",
|
|
191
|
-
"^(app/.+)$": "<rootDir>/src/$1/",
|
|
192
|
-
"^(components/.+)$": "<rootDir>/src/$1/",
|
|
193
|
-
"^(stores/.+)$": "<rootDir>/src/$1/",
|
|
194
|
-
"^(views/.+)$": "<rootDir>/src/$1/",
|
|
195
|
-
"^(assets/.+)$": "<rootDir>/src/$1/",
|
|
196
|
-
"^(models/.+)$": "<rootDir>/src/$1/",
|
|
197
|
-
"^~/(.*)$": "<rootDir>/src/$1"
|
|
198
|
-
},
|
|
199
|
-
"setupFiles": [
|
|
200
|
-
"<rootDir>/__test__/globals-test.ts"
|
|
201
|
-
]
|
|
202
|
-
},
|
|
203
|
-
"gitHead": "492b228acbf6f7bc309984755a8dd948ea6fb0e2"
|
|
204
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@dao42/d42paas-front",
|
|
3
|
+
"version": "0.7.57",
|
|
4
|
+
"description": "> TODO: description",
|
|
5
|
+
"author": "eric183 <kk297466058@gmail.com>",
|
|
6
|
+
"homepage": "https://github.com/dao42/d42paas_frontend#readme",
|
|
7
|
+
"license": "ISC",
|
|
8
|
+
"main": "./dist/DaoPaaS.umd.js",
|
|
9
|
+
"module": "./dist/DaoPaaS.es.js",
|
|
10
|
+
"types": "./dist/editor.d.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"import": "./dist/DaoPaaS.es.js",
|
|
14
|
+
"require": "./dist/DaoPaaS.umd.js"
|
|
15
|
+
},
|
|
16
|
+
"./style.css": {
|
|
17
|
+
"import": "./dist/style.css",
|
|
18
|
+
"require": "./dist/style.css"
|
|
19
|
+
},
|
|
20
|
+
"./assets/": "./dist/assets/"
|
|
21
|
+
},
|
|
22
|
+
"directories": {
|
|
23
|
+
"lib": "lib",
|
|
24
|
+
"src": "src"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"prebuild": "rimraf dist",
|
|
28
|
+
"webpack": "cross-env TS_NODE_PROJECT=\"tsconfig.dev.json\" webpack --config ./config/webpack.prod.config.ts",
|
|
29
|
+
"start:web": "yarn vite && yarn workNameSpaceToFix && yarn typedoc",
|
|
30
|
+
"storybook": "start-storybook -p 6006",
|
|
31
|
+
"build-storybook": "build-storybook -o .storybook/dist",
|
|
32
|
+
"dev:disble": "cross-env TS_NODE_PROJECT=\"tsconfig.dev.json\" webpack serve --open --config ./config/webpack.dev.config.ts",
|
|
33
|
+
"analyse": "cross-env NODE_ENV=production TS_NODE_PROJECT=\"tsconfig.json\" webpack --config ./config/webpack.analytics.config.js",
|
|
34
|
+
"dev": "vite serve --host --config ./config/vite.config.ts",
|
|
35
|
+
"dev:patch": "vite serve --host --config ./config/vite.dev.config.ts",
|
|
36
|
+
"vite": "cross-env NODE_ENV=production vite build --config ./config/vite.config.ts && yarn run copyTS",
|
|
37
|
+
"typedoc": "npx typedoc --tsconfig ./doc.tsconfig.json",
|
|
38
|
+
"fix": "eslint --fix --ext .jsx src/**",
|
|
39
|
+
"copyTS": "shx cp ./src/types/editor.d.ts ./dist",
|
|
40
|
+
"np": "npm publish --access-public",
|
|
41
|
+
"patch": "yarn vite && npm version patch && yarn clean",
|
|
42
|
+
"test": "jest --verbose",
|
|
43
|
+
"clean": "node config/patchClean.js",
|
|
44
|
+
"workNameSpaceToFix": "node ./config/workNameSpaceToFix.js"
|
|
45
|
+
},
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"@dao42/d42paas_rtc": "^0.1.8"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@babel/core": "^7.9",
|
|
51
|
+
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
52
|
+
"@babel/plugin-transform-runtime": "^7.15.0",
|
|
53
|
+
"@babel/preset-env": "^7.15.4",
|
|
54
|
+
"@babel/preset-react": "^7.14.5",
|
|
55
|
+
"@babel/preset-typescript": "^7.15.0",
|
|
56
|
+
"@babel/runtime": "^7.15.4",
|
|
57
|
+
"@emotion/babel-plugin": "^11.3.0",
|
|
58
|
+
"@emotion/babel-preset-css-prop": "^11.2.0",
|
|
59
|
+
"@emotion/core": "^11.0.0",
|
|
60
|
+
"@emotion/css": "^11.1.3",
|
|
61
|
+
"@emotion/eslint-plugin": "^11.2.0",
|
|
62
|
+
"@emotion/react": "^11.4.1",
|
|
63
|
+
"@emotion/styled": "^11.3.0",
|
|
64
|
+
"@fullhuman/postcss-purgecss": "^4.0.3",
|
|
65
|
+
"@headlessui/react": "^1.4.3",
|
|
66
|
+
"@loadable/component": "^5.15.2",
|
|
67
|
+
"@react-spring/types": "^9.2.4",
|
|
68
|
+
"@storybook/addon-actions": "^6.3.12",
|
|
69
|
+
"@storybook/addon-essentials": "^6.3.12",
|
|
70
|
+
"@storybook/addon-links": "^6.3.12",
|
|
71
|
+
"@storybook/addon-postcss": "^2.0.0",
|
|
72
|
+
"@storybook/manager-webpack5": "^6.3.12",
|
|
73
|
+
"@storybook/react": "^6.3.12",
|
|
74
|
+
"@tailwindcss/typography": "^0.5.2",
|
|
75
|
+
"@types/css-minimizer-webpack-plugin": "^3.0.2",
|
|
76
|
+
"@types/dotenv-webpack": "^7.0.3",
|
|
77
|
+
"@types/fs-extra": "^9.0.13",
|
|
78
|
+
"@types/jest": "^27.0.2",
|
|
79
|
+
"@types/loadable__component": "^5.13.4",
|
|
80
|
+
"@types/lodash": "^4.14.175",
|
|
81
|
+
"@types/mini-css-extract-plugin": "^2.4.0",
|
|
82
|
+
"@types/ot": "^0.0.5",
|
|
83
|
+
"@types/react": "^17.0.24",
|
|
84
|
+
"@types/react-dom": "^17.0.9",
|
|
85
|
+
"@types/tailwindcss": "^2.2.4",
|
|
86
|
+
"@types/uuid": "^8.3.1",
|
|
87
|
+
"@vitejs/plugin-react": "^1.0.7",
|
|
88
|
+
"autoprefixer": "^10.0.2",
|
|
89
|
+
"babel-core": "^6.26.3",
|
|
90
|
+
"babel-loader": "^8.2.2",
|
|
91
|
+
"concurrently": "^6.3.0",
|
|
92
|
+
"css-loader": "^6.5.1",
|
|
93
|
+
"css-minimizer-webpack-plugin": "^3.1.4",
|
|
94
|
+
"cssnano": "^5.0.11",
|
|
95
|
+
"dayjs": "^1.10.7",
|
|
96
|
+
"devicon": "^2.14.0",
|
|
97
|
+
"dexie": "^3.2.0",
|
|
98
|
+
"dotenv": "^10.0.0",
|
|
99
|
+
"dotenv-webpack": "^7.0.3",
|
|
100
|
+
"file-loader": "^6.2.0",
|
|
101
|
+
"fs-extra": "^10.0.0",
|
|
102
|
+
"glob-all": "^3.2.1",
|
|
103
|
+
"html-webpack-plugin": "^5.3.2",
|
|
104
|
+
"idb": "^6.1.5",
|
|
105
|
+
"jest": "27.0.6",
|
|
106
|
+
"less": "^4.1.2",
|
|
107
|
+
"leva": "^0.9.18",
|
|
108
|
+
"lodash": "^4.17.21",
|
|
109
|
+
"lottie-web": "^5.7.14",
|
|
110
|
+
"mini-css-extract-plugin": "^2.4.5",
|
|
111
|
+
"monaco-editor": "^0.31.0",
|
|
112
|
+
"monaco-editor-core": "^0.31.0",
|
|
113
|
+
"ninja-keys": "^1.1.12",
|
|
114
|
+
"normalize-url": "^7.0.2",
|
|
115
|
+
"ot": "^0.0.15",
|
|
116
|
+
"postcss": "^8.0.9",
|
|
117
|
+
"postcss-import": "^14.0.2",
|
|
118
|
+
"postcss-nesting": "^10.1.0",
|
|
119
|
+
"prettier": "^2.3.2",
|
|
120
|
+
"react": "^17.0.2",
|
|
121
|
+
"react-complex-tree": "^1.1.2",
|
|
122
|
+
"react-content-loader": "^6.2.0",
|
|
123
|
+
"react-dnd": "^14.0.4",
|
|
124
|
+
"react-dnd-html5-backend": "^14.0.2",
|
|
125
|
+
"react-dom": "^17.0.2",
|
|
126
|
+
"react-icons": "^4.3.1",
|
|
127
|
+
"react-markdown": "^8.0.0",
|
|
128
|
+
"react-router-dom": "^5.3.0",
|
|
129
|
+
"react-split-pane": "^0.1.92",
|
|
130
|
+
"react-spring": "^9.2.4",
|
|
131
|
+
"reconnecting-websocket": "^4.4.0",
|
|
132
|
+
"reflect-metadata": "^0.1.13",
|
|
133
|
+
"rehype-katex": "^6.0.2",
|
|
134
|
+
"remark-math": "^5.1.1",
|
|
135
|
+
"rimraf": "^3.0.2",
|
|
136
|
+
"rsuite": "5.6.4",
|
|
137
|
+
"rxjs": "^7.2.0",
|
|
138
|
+
"sass": "^1.43.2",
|
|
139
|
+
"sass-loader": "^12.2.0",
|
|
140
|
+
"socket.io": "^4.2.0",
|
|
141
|
+
"socket.io-client": "^4.2.0",
|
|
142
|
+
"source-map-loader": "^3.0.0",
|
|
143
|
+
"speed-measure-webpack-plugin": "^1.5.0",
|
|
144
|
+
"style-loader": "^3.3.1",
|
|
145
|
+
"stylis": "^4.0.10",
|
|
146
|
+
"tailwindcss": "^3.0.7",
|
|
147
|
+
"terser-webpack-plugin": "^5.2.5",
|
|
148
|
+
"three": "^0.132.2",
|
|
149
|
+
"ts-jest": "^27.1.3",
|
|
150
|
+
"ts-loader": "^9.2.5",
|
|
151
|
+
"ts-node": "^10.0.0",
|
|
152
|
+
"tsconfig-paths-webpack-plugin": "^3.5.1",
|
|
153
|
+
"typedoc": "^0.22.12",
|
|
154
|
+
"typescript": "4.5",
|
|
155
|
+
"uuid": "^8.3.2",
|
|
156
|
+
"vite": "^2.7.2",
|
|
157
|
+
"vite-plugin-html": "^3.0.6",
|
|
158
|
+
"webpack": "^5.52.0",
|
|
159
|
+
"webpack-bundle-analyzer": "^4.5.0",
|
|
160
|
+
"webpack-cli": "^4.9.1",
|
|
161
|
+
"webpack-dashboard": "^3.3.6",
|
|
162
|
+
"webpack-dev-server": "^4.1.0",
|
|
163
|
+
"xterm": "^4.13.0",
|
|
164
|
+
"xterm-addon-attach": "^0.6.0",
|
|
165
|
+
"xterm-addon-fit": "^0.5.0",
|
|
166
|
+
"zustand": "^3.7.0"
|
|
167
|
+
},
|
|
168
|
+
"files": [
|
|
169
|
+
"dist"
|
|
170
|
+
],
|
|
171
|
+
"repository": {
|
|
172
|
+
"type": "git",
|
|
173
|
+
"url": "git+https://github.com/dao42/d42paas_frontend.git"
|
|
174
|
+
},
|
|
175
|
+
"bugs": {
|
|
176
|
+
"url": "https://github.com/dao42/d42paas_frontend/issues"
|
|
177
|
+
},
|
|
178
|
+
"jest": {
|
|
179
|
+
"globals": {
|
|
180
|
+
"ts-jest": {
|
|
181
|
+
"tsConfig": "tsconfig.json"
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
"preset": "ts-jest",
|
|
185
|
+
"testMatch": [
|
|
186
|
+
"**/__tests__/**/*.ts?(x)",
|
|
187
|
+
"**/?(*.)+(spec|test).ts?(x)"
|
|
188
|
+
],
|
|
189
|
+
"moduleNameMapper": {
|
|
190
|
+
"^.+\\.css$": "identity-obj-proxy",
|
|
191
|
+
"^(app/.+)$": "<rootDir>/src/$1/",
|
|
192
|
+
"^(components/.+)$": "<rootDir>/src/$1/",
|
|
193
|
+
"^(stores/.+)$": "<rootDir>/src/$1/",
|
|
194
|
+
"^(views/.+)$": "<rootDir>/src/$1/",
|
|
195
|
+
"^(assets/.+)$": "<rootDir>/src/$1/",
|
|
196
|
+
"^(models/.+)$": "<rootDir>/src/$1/",
|
|
197
|
+
"^~/(.*)$": "<rootDir>/src/$1"
|
|
198
|
+
},
|
|
199
|
+
"setupFiles": [
|
|
200
|
+
"<rootDir>/__test__/globals-test.ts"
|
|
201
|
+
]
|
|
202
|
+
},
|
|
203
|
+
"gitHead": "492b228acbf6f7bc309984755a8dd948ea6fb0e2"
|
|
204
|
+
}
|