-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 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
74
75
76
77
78
79
{
"name": "d-form",
"version": "1.0.0",
"description": "react ui components",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development webpack serve --config=webpack.config.ts",
"test": "jest",
"build": "rm -rf public && webpack --config=webpack.config.ts",
"release": "NODE_ENV=production npm run build",
"watch": "tsc --watch"
},
"husky": {
"hooks": {
"pre-commit": "tsc && pretty-quick --staged",
"post-merge": "pnpm install"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/reeli/d-form.git"
},
"author": "reeli",
"license": "ISC",
"bugs": {
"url": "https://github.com/reeli/d-form/issues"
},
"homepage": "https://github.com/reeli/d-form#readme",
"devDependencies": {
"@babel/core": "7.17.10",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-proposal-object-rest-spread": "7.17.3",
"@babel/plugin-syntax-typescript": "7.17.10",
"@babel/plugin-transform-typescript": "7.16.8",
"@babel/preset-env": "7.17.10",
"@babel/preset-typescript": "^7.16.7",
"@babel/runtime": "^7.17.9",
"@emotion/babel-plugin": "^11.9.2",
"@emotion/babel-preset-css-prop": "11.2.0",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@types/html-webpack-plugin": "^3.2.6",
"@types/lodash": "4.14.182",
"@types/node": "17.0.32",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.3",
"@types/webpack": "5.28.0",
"@types/webpack-dev-server": "^4.7.2",
"@webpack-cli/serve": "^1.6.1",
"babel-loader": "8.2.5",
"babel-plugin-emotion": "11.0.0",
"babel-plugin-typescript-iife-enum": "0.2.1",
"html-webpack-plugin": "5.5.0",
"husky": "8.0.1",
"prettier": "2.6.2",
"pretty-quick": "3.1.3",
"raw-loader": "4.0.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-router-dom": "^6.3.0",
"ts-node": "10.7.0",
"typescript": "4.6.4",
"webpack": "5.72.1",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@emotion/react": "^11.9.0",
"@monaco-editor/react": "^4.4.5",
"antd": "^4.20.4",
"date-fns": "^2.28.0",
"lodash": "^4.17.21",
"react-hook-form": "^7.31.1"
},
"peerDependencies": {
"react": ">=17.0.1",
"react-dom": ">=17.0.1"
}
}