-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 3.44 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
99
100
101
102
103
104
105
106
107
108
109
{
"name": "act-ui",
"version": "1.1.44",
"description": "",
"main": "index.tsx",
"private": true,
"scripts": {
"build": "webpack --config=webpack/webpack.production.js",
"build:dev": "webpack --config=webpack/webpack.dev.js --watch",
"start": "webpack-dev-server --config=webpack/webpack.dev.js",
"test": "jest",
"test:ci": "jest --no-cache",
"lint": "tsc --noEmit && eslint . --ext .js,.js,.ts,.tsx",
"lint:fix": "eslint --fix './src/**/*.{ts,tsx}'"
},
"dependencies": {
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@monaco-editor/loader": "^1.2.0",
"@monaco-editor/react": "^4.3.1",
"@mui/icons-material": "^5.2.4",
"@mui/material": "^5.2.4",
"@types/ace": "0.0.44",
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.23",
"@types/json-schema": "^7.0.6",
"@types/jsonpath": "^0.2.0",
"@types/lodash.clonedeep": "^4.5.6",
"@types/lodash.throttle": "^4.1.6",
"@types/react": "^17.0.32",
"@types/react-beautiful-dnd": "^13.1.1",
"@types/react-dom": "^17.0.10",
"core-js": "^3.6.5",
"cross-env": "^6.0.3",
"json-schema": "^0.4.0",
"json-source-map": "^0.6.1",
"jsonpath": "^1.1.1",
"lodash.clonedeep": "^4.5.0",
"lodash.throttle": "^4.1.1",
"mobx": "^6.3.5",
"mobx-react-lite": "^1.5.2",
"monaco-editor": "^0.29.1",
"nanoid": "^3.3.4",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.0.0",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.13.1",
"regenerator-runtime": "^0.13.5",
"resize-observer-polyfill": "^1.5.1",
"setimmediate": "^1.0.5",
"use-resize-observer": "^6.1.0"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-numeric-separator": "^7.8.3",
"@babel/plugin-proposal-optional-catch-binding": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@types/react-timeago": "^4.1.1",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"@webpack-cli/serve": "^1.6.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.1.0",
"babel-plugin-const-enum": "^1.0.1",
"babel-preset-minify": "^0.5.1",
"copy-webpack-plugin": "^6.3.2",
"css-loader": "^3.5.2",
"cssnano": "^4.1.10",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-formatter-pretty": "^3.0.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^2.5.1",
"file-loader": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^5.0.1",
"html-webpack-plugin": "^3.2.0",
"icon-font-loader": "^2.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"jest-enzyme": "^7.1.2",
"jest-watch-typeahead": "^0.6.0",
"node-sass": "^4.13.1",
"postcss-loader": "^3.0.0",
"prettier": "^2.4.1",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"ts-jest": "^24.1.0",
"typescript": "^3.7.2",
"wait-for-expect": "^3.0.2",
"webpack": "^4.41.2",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.9.2",
"webpack-merge": "^4.2.2"
}
}