-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.58 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
{
"name": "netlify-cms-widget-nested-select",
"description": "A set of dropdowns that will show and populate the second dropdown based on the contents of the first.",
"keywords": [
"netlify",
"netlify-cms",
"cms",
"widget",
"select",
"nested",
"conditional"
],
"version": "1.0.5",
"homepage": "https://github.com/kbravh/netlify-cms-widget-nested-select",
"license": "MIT",
"main": "dist/main.js",
"devDependencies": {
"@babel/preset-env": "^7.6.3",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.1.4",
"css-loader": "^3.2.0",
"html-webpack-plugin": "^3.2.0",
"netlify-cms": "^1.5.0",
"react": "^16.10.2",
"source-map-loader": "^0.2.3",
"style-loader": "^0.20.3",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-serve": "^0.3.1"
},
"dependencies": {
"immutable": "^4.0.0-rc.12",
"prop-types": "^15.6.1",
"react-select": "^3.0.8"
},
"peerDependencies": {
"react": "^16"
},
"scripts": {
"start": "webpack-serve --log-level error --open-path /#/collections/test/entries/test",
"demo": "webpack --display errors-only --devtool source-map",
"build": "cross-env NODE_ENV=production webpack",
"prepublishOnly": "npm run build"
}
}