-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (46 loc) · 1.49 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
{
"name": "gutenberg-gutenblocks",
"version": "1.0.1",
"main": "index.js",
"repository": "https://github.com/smartcatdev/Gutenblocks-Gutenberg-blocks.git",
"author": "Eric Green <[email protected]>",
"license": "MIT",
"scripts": {
"develop": "yarn run clean && ./node_modules/.bin/webpack -d --watch --config webpack.development.js --env development",
"build": "yarn run clean && ./node_modules/.bin/webpack -p --progress --config webpack.production.js --env production",
"clean": "./node_modules/.bin/shx rm -rf ./dist/*",
"start": "yarn run develop",
"zip": "./scripts/zip.js",
"release": "yarn build && yarn zip"
},
"devDependencies": {
"archiver": "^2.1.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.10",
"fs-extra": "^5.0.0",
"glob": "^7.1.2",
"mini-css-extract-plugin": "^0.2.0",
"node-sass": "^4.7.2",
"sass-loader": "^6.0.7",
"shelljs": "^0.8.1",
"shx": "^0.2.2",
"style-loader": "^0.20.3",
"styled-jsx": "^2.2.6",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.11",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"classnames": "^2.2.5",
"lodash": "^4.17.5",
"prop-types": "^15.6.1",
"react": "^16.2.0"
}
}