-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.72 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
{
"name": "@gravel-form/antd",
"version": "0.0.4",
"description": "A flexible middlewares driven json schema form with Ant Design",
"keywords": [
"antd",
"form",
"json",
"json-schema",
"react",
"shema"
],
"bugs": {
"url": "https://github.com/gravel-form/antd-form/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/gravel-form/antd-form"
},
"license": "MIT",
"files": [
"lib"
],
"main": "lib/index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next export",
"type-check": "tsc",
"compile": "gulp compile",
"deploy": "rimraf node_modules/.cache && rimraf out && next build && next export && touch out/.nojekyll && gh-pages -d out -t true",
"npm-publish": "rimraf lib && npm run compile && npm publish --access public"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"dependencies": {
"@gravel-form/core-rc": "0.0.3",
"@types/json-schema": "^7.0.5",
"antd": "^4.4.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"@types/lodash": "^4.14.157",
"@types/node": "^14.0.14",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"@zeit/next-less": "^1.0.1",
"babel-plugin-import": "^1.13.0",
"bluebird": "^3.7.2",
"gh-pages": "^3.1.0",
"gulp": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^6.0.0-alpha.1",
"less": "^3.11.3",
"next": "^9.4.4",
"null-loader": "^4.0.0",
"react": "^16.13.1",
"react-async-hook": "^3.6.1",
"react-dom": "^16.13.1",
"react-live": "^2.2.2",
"rimraf": "^3.0.2",
"through2": "^4.0.2",
"typescript": "^3.9.6"
}
}