forked from d4rekanguok/netlify-cms-widgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.68 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
{
"name": "netlify-cms-widgets",
"version": "1.0.0",
"description": "A collection of custom widgets for netlify-cms",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint ./",
"lint:fix": "eslint --fix ./",
"bootstrap": "lerna bootstrap --use-workspaces",
"build": "lerna run build",
"playground:dev": "webpack-dev-server --config ./packages/playground/webpack.config.js",
"playground:build": "webpack --config ./packages/playground/webpack.config.js"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/d4rekanguok/netlify-cms-widgets.git"
},
"keywords": [
"netlify-cms",
"widgets"
],
"author": "Derek Nguyen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/d4rekanguok/netlify-cms-widgets/issues"
},
"homepage": "https://github.com/d4rekanguok/netlify-cms-widgets#readme",
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/lodash": "^4.14.136",
"@types/react": "^16.8.23",
"@types/react-beautiful-dnd": "^11.0.2",
"@types/react-dom": "^16.8.4",
"@types/react-select": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"copy-webpack-plugin": "^5.0.3",
"eslint": "^6.1.0",
"eslint-plugin-jest": "^22.14.1",
"eslint-plugin-react": "^7.14.3",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"lerna": "^3.15.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"workspaces": [
"packages/*"
]
}