-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
118 lines (118 loc) · 3.69 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
110
111
112
113
114
115
116
117
118
{
"name": "rjsf-antd",
"version": "0.1.5-alpha.15",
"author": "Vidy Videni <vidy.videni@gmail.com>",
"keywords": [
"Ant Design",
"react-jsonschema-form",
"jsonschema",
"json-schema",
"json",
"schema",
"form",
"react",
"antd",
"rjsf-antd"
],
"repository": {
"type": "git",
"url": "https://github.com/videni/rjsf-antd.git"
},
"license": "MIT",
"main": "lib/index.js",
"module": "es/index.js",
"typings": "es/index.d.ts",
"description": "Ant Design theme, fields and widgets for react-jsonschema-form",
"files": [
"dist",
"lib",
"es"
],
"scripts": {
"start": "webpack-dev-server --config ./config/webpack.dev.js --hot --color --port=5050",
"build:dist": "npm run clean:dist && cross-env NODE_ENV=production webpack --config ./config/webpack.dist.js",
"build:lib": "rimraf lib && tsc --outDir lib/ --declarationMap --declaration",
"build:es": "rimraf es && tsc -m es6 --outDir es",
"clean:dist": "rimraf dist",
"build": "npm run build:lib && npm run build:es",
"test": "webpack-dev-server --config ./config/webpack.test.js --hot --color --port=6060",
"lint:es": "cross-env NODE_ENV=eslint eslint ./src --ext .js,.jsx,.ts,.tsx",
"prettier": "pretty-quick --staged"
},
"peerDependencies": {
"@vidyvideni/react-jsonschema-form": "^1.7.1",
"antd": "^3.19.5",
"react": ">=16",
"react-dom": ">=16.7.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-do-expressions": "^7.2.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@babel/runtime": "^7.4.5",
"@types/classnames": "^2.2.9",
"@types/jest": "^24.0.15",
"@types/json-schema": "^7.0.3",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"@types/react-jsonschema-form": "^1.6.2",
"@typescript-eslint/eslint-plugin": "^1.12.0",
"@typescript-eslint/parser": "^1.12.0",
"antd": "^3.20.2",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.12.0",
"classnames": "^2.2.6",
"codemirror": "^5.48.0",
"cross-env": "^5.2.0",
"css-loader": "^3.0.0",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-markdown": "^1.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.0",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"react": "^16.8.6",
"react-codemirror2": "^6.0.0",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.12.6",
"rimraf": "^2.6.3",
"style-loader": "^0.23.1",
"ts-loader": "^6.0.4",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.5.3",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2",
"webpack-merge": "^4.2.1",
"webpack-node-externals": "^1.7.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@ant-design/create-react-context": "^0.2.5",
"omit.js": "^1.0.2"
}
}