-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
72 lines (72 loc) · 2.06 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
{
"name": "@netlify/netlify-cms-widget-parent",
"version": "1.0.12",
"description": "A Netlify CMS widget to select directory parent for an entry",
"main": "dist/netlify-cms-widget-parent.js",
"scripts": {
"prepublishOnly": "run-s build",
"build": "webpack --env production",
"develop": "webpack serve --env development",
"lint": "eslint 'src/**/*.js'",
"test": "jest",
"format": "prettier --write 'src/**/*.js'",
"format:ci": "prettier --check 'src/**/*.js'"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/netlify-labs/netlify-cms-widget-parent.git"
},
"keywords": [
"netlify",
"cms",
"widget"
],
"author": "netlify-labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/netlify-labs/netlify-cms-widget-parent/issues"
},
"homepage": "https://github.com/netlify-labs/netlify-cms-widget-parent#readme",
"dependencies": {
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27",
"netlify-cms-ui-default": "^2.15.5",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-select": "^3.1.0",
"slugify": "^1.5.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@commitlint/cli": "^16.0.0",
"@commitlint/config-conventional": "^16.0.0",
"babel-loader": "^8.1.0",
"babel-plugin-emotion": "^10.0.33",
"copy-webpack-plugin": "^10.0.0",
"cross-env": "^7.0.2",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-react": "^7.20.3",
"html-webpack-plugin": "^5.0.0",
"husky": "^4.2.5",
"jest": "^27.0.0",
"npm-run-all2": "^5.0.0",
"path-browserify": "^1.0.1",
"prettier": "^2.0.5",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}