-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 2.55 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
{
"name": "react-jsonschema-form-material-theme",
"version": "0.0.1",
"description": "Material-ui theme for the react-jsonschema-form ",
"main": "build/cjs/index.js",
"upkg": "build/lib/react-jsonschema-form-material-theme.min.js",
"types": "src/index.d.ts",
"repository": "[email protected]:SelfKeyFoundation/react-jsonschema-form-material-theme.git",
"author": "rodrigopavezi <[email protected]>",
"license": "MIT",
"scripts": {
"build": "yarn build:lib && yarn build:playground && yarn build:lib-cjs ",
"build:lib-cjs": "rm -rf build/cjs && NODE_ENV=production babel src -d build/cjs",
"build:lib": "webpack --mode production --config webpack.prod.js",
"build:playground": "webpack --mode production --config webpack.prod.playground.js",
"start": "webpack-dev-server --mode development --config webpack.dev.js",
"deploy": "gh-pages-deploy -- 'Deploy playground'",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"peerDependencies": {
"@material-ui/core": "4.9.9",
"@material-ui/icons": "4.9.1",
"@material-ui/lab": "4.0.0-alpha.48",
"@material-ui/styles": "4.9.6",
"ajv": "6.5.5",
"react": "16.13.1",
"react-dom": "16.13.1",
"selfkey-ui": "*"
},
"dependencies": {
"ajv": "6.5.5",
"json-schema-ref-parser": "7.1.1",
"lodash.topath": "4.5.2",
"mime": "2.4.0",
"svg-inline-loader": "0.8.0",
"core-js": "2.5.7"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "7.1.6",
"@babel/plugin-external-helpers": "7.0.0",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-transform-runtime": "7.1.0",
"@babel/preset-env": "7.1.6",
"@babel/preset-react": "7.0.0",
"@material-ui/core": "4.9.9",
"@material-ui/icons": "4.9.1",
"@material-ui/lab": "4.0.0-alpha.48",
"@material-ui/styles": "4.9.6",
"ajv": "6.5.5",
"babel-loader": "8.0.4",
"clean-webpack-plugin": "1.0.1",
"codemirror": "5.42.0",
"copy-webpack-plugin": "4.6.0",
"css-loader": "1.0.1",
"gh-pages-deploy": "0.5.0",
"react": "16.13.1",
"react-codemirror2": "5.1.0",
"react-dom": "16.13.1",
"selfkey-ui": "https://github.com/SelfKeyFoundation/selfkey-ui.git#9d3144e71259666a1bb335de1849c565e5b2e87e",
"snyk": "1.307.0",
"style-loader": "0.23.1",
"uglifyjs-webpack-plugin": "2.1.1",
"webpack": "4.26.1",
"webpack-cli": "3.1.2",
"webpack-dev-server": "3.1.14",
"webpack-merge": "4.2.1"
},
"gh-pages-deploy": {
"staticpath": "build/playground"
},
"snyk": true
}