forked from coliquio/gutenberg-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.43 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
73
74
75
76
77
{
"name": "coliquio-blocks",
"version": "1.0.0",
"description": "Custom coliquio blocks",
"main": "build/index.js",
"scripts": {
"build": "NODE_ENV=developmet webpack && cp -rf build/ integration_build/",
"buildNative": "node buildForIos",
"dev": "NODE_ENV=development webpack && BLOCK_DIR=$PWD npm --prefix node_modules/@frontkom/g-editor start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:scss": "stylelint src/**/*.scss",
"lint:scss:fix": "stylelint src/**/*.scss --fix",
"start": "npm run build && BLOCK_DIR=$PWD npm --prefix node_modules/@frontkom/g-editor start",
"serve": "node server/server.js",
"watch": "nodemon --watch src/ --delay 10ms --exec 'npm run dev'",
"serve:build": "concurrently \"npm run serve\" \"nodemon --watch src/ --delay 10ms --exec 'npm run build'\""
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@frontkom/g-editor": "^1.6.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.6.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.18.3",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"node-sass": "^4.13.1",
"nodemon": "^2.0.4",
"postcss-loader": "^3.0.0",
"prettier": "2.2.1",
"sass-loader": "^9.0.2",
"stylelint": "^13.11.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-prettier": "^1.2.0",
"url-loader": "^3.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"dependencies": {
"@wordpress/dom-ready": "^2.11.0",
"concurrently": "^6.0.0",
"express": "^4.17.1",
"lodash": "^4.17.20",
"lodash.assign": "^4.2.0",
"lodash.assignwith": "^4.2.0",
"lodash.filter": "^4.6.0",
"lodash.get": "^4.2.0",
"lodash.isequal": "^4.5.0",
"lodash.merge": "^4.6.2",
"lodash.reduce": "^4.6.0",
"lodash.transform": "^4.6.0",
"react": "^16.13.1",
"react-cache": "^2.0.0-alpha.1",
"react-dom": "^16.13.1",
"scheduler": "^0.19.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.scss": "stylelint --fix",
"*.{js,md}": "prettier --write"
}
}