-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.3 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
{
"name": "simpleform",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"start": "npm run start --workspaces",
"build": "npm run build --workspaces --if-present",
"clean": "rm -rf node_modules packages/**/node_modules",
"publish": "npm --workspaces publish",
"lint": "eslint --ext=.js,.ts,.jsx,.tsx ./packages",
"lint:fix": "eslint --fix --ext=.js,.ts,.jsx,.tsx ./packages",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"workspaces": [
"packages/form",
"packages/render",
"packages/rule",
"packages/editor"
],
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/plugin-proposal-decorators": "^7.23.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@babel/runtime": "^7.23.2",
"@babel/runtime-corejs3": "^7.23.2",
"@svgr/webpack": "^8.1.0",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"babel-plugin-import": "^1.13.8",
"buffer": "^6.0.3",
"copy-webpack-plugin": "^11.0.0",
"core-js": "^3.33.2",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"eslint": "^8.53.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^4.0.1",
"express": "^4.18.2",
"html-webpack-plugin": "^5.5.3",
"less": "^4.2.0",
"less-loader": "^11.1.3",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.31",
"postcss-loader": "^7.3.3",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^9.3.0",
"regenerator-runtime": "^0.14.0",
"style-loader": "^3.3.3",
"stylelint": "^15.11.0",
"stylelint-webpack-plugin": "^4.1.1",
"terser-webpack-plugin": "^5.3.9",
"thread-loader": "^4.0.2",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0"
}
}