-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.11 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
{
"name": "ajax-posts-block",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "wp-scripts start ./src/editor ./src/public",
"build": "wp-scripts build ./src/editor ./src/public",
"env": "wp-env",
"env:start": "wp-env start",
"format:js": "wp-scripts format-js",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"test:e2e": "wp-scripts test-e2e --config=tests/e2e/jest.config.js --runInBand",
"test:e2e:debug": "wp-scripts --inspect-brk test-e2e --config=tests/e2e/jest.config.js --runInBand",
"test:unit": "wp-scripts test-unit-js --config=jest.config.js",
"test:unit:watch": "wp-scripts test-unit-js --watch --runInBand --verbose=true",
"test:unit:debug": "wp-scripts --inspect-brk test-unit-js --runInBand --no-cache"
},
"devDependencies": {
"@wordpress/data": "^5.1.0",
"@wordpress/e2e-test-utils": "^5.2.0",
"@wordpress/env": "^4.0.4",
"@wordpress/icons": "^2.8.0",
"@wordpress/scripts": "^12.5.0",
"enzyme": "^3.11.0",
"html-entities": "^1.4.0",
"lodash": "^4.17.21",
"react-select": "^4.3.0"
},
"jest": {
"globals": {
"window": {}
}
}
}