forked from VanOns/laraberg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.81 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
{
"name": "laraberg",
"version": "0.0.1",
"description": "A Gutenberg implementation for Laravel",
"main": "src/resources/laraberg.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"development": "cross-env NODE_ENV=development webpack --progress --hide-modules --config webpack.config.js",
"dev": "npm run development",
"watch": "npm run development -- --watch",
"start": "npm run watch",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VanOns/laraberg.git"
},
"author": "Maurice Wijnia",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/VanOns/laraberg/issues"
},
"homepage": "https://github.com/VanOns/laraberg#readme",
"browserslist": "> 0.25%, not dead",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.4.10",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"copy-webpack-plugin": "^5.0.1",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"eslint": "^5.13.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.29.2",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"@frontkom/gutenberg-js": "^4.0.0",
"axios": "^0.18.0"
}
}