forked from 10up/convert-to-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.79 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
78
79
80
81
82
83
84
85
86
87
88
{
"name": "convert-to-blocks",
"version": "1.2.1",
"description": "Convert to Blocks is a WordPress plugin that transforms classic editor content to blocks on the fly.",
"author": {
"name": "10up",
"email": "opensource@10up.com",
"url": "https://10up.com",
"role": "developer"
},
"license": "GPL-2.0-or-later",
"scripts": {
"test": "phpunit",
"start": "composer install && npm install && npm run build",
"build": "NODE_ENV=production webpack --config config/webpack.prod.js",
"dev": "NODE_ENV=development webpack --config config/webpack.dev.js",
"watch": "NODE_ENV=development webpack --watch --config config/webpack.dev.js",
"build-release": "npm install && composer install --no-dev -o && npm run build",
"lint-release": "npm install && composer install && npm run lint",
"lint-js": "eslint assets/js",
"lint-php": "composer run lint",
"format-js": "eslint --fix assets/js",
"lint": "npm run lint-js && npm run lint-php",
"format": "npm run format-js",
"wp-env": "wp-env",
"env:start": "wp-env start",
"env:stop": "wp-env stop",
"cypress:open": "cypress open --config-file tests/cypress/config.js --e2e --browser chrome",
"cypress:run": "cypress run --config-file tests/cypress/config.js",
"env": "wp-env",
"postenv:start": "./tests/bin/initialize.sh"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint"
]
},
"repository": {
"type": "git",
"url": "https://github.com/10up/convert-to-blocks"
},
"devDependencies": {
"@10up/cypress-wp-utils": "^0.1.0",
"@10up/eslint-config": "^2.1.1",
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/register": "^7.7.7",
"@wordpress/env": "^5.13.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"browser-sync": "^2.29.3",
"browser-sync-webpack-plugin": "^2.2.2",
"browserslist": "^4.16.5",
"caniuse-db": "^1.0.30001019",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.6.1",
"cssnano": "^5.1.14",
"cypress": "^10.11.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^3.0.4",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^22.2.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^2.5.1",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"prettier": "^2.1.1",
"terser": "^4.8.1",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.12",
"webpack-merge": "^4.2.2",
"webpackbar": "^4.0.0"
},
"engines": {
"node": ">=8.11"
}
}