-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.35 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
{
"name": "curated-query-loop",
"version": "0.2.0",
"scripts": {
"start": "npm run watch",
"watch": "10up-toolkit watch --port=5010 --hot",
"build": "10up-toolkit build",
"format-js": "10up-toolkit format-js",
"lint-js": "10up-toolkit lint-js",
"lint-style": "10up-toolkit lint-style",
"test": "10up-toolkit test-unit-jest",
"clean-dist": "rm -rf ./dist",
"cypress:open": "cypress open --config-file tests/cypress/config.js --e2e --browser electron",
"cypress:run": "cypress run --config-file tests/cypress/config.js",
"env": "wp-env",
"env:start": "wp-env start",
"env:stop": "wp-env stop",
"env:restart": "wp-env stop && wp-env start",
"env:destroy": "wp-env destroy",
"postenv:start": "./tests/bin/initialize.sh"
},
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"@10up/cypress-wp-utils": "^0.2.0",
"@wordpress/env": "^9.1.0",
"10up-toolkit": "6.0.0-next.0",
"cypress": "^13.6.3"
},
"dependencies": {
"@10up/block-components": "^1.17.4",
"@wordpress/icons": "^10.6.0",
"classnames": "^2.5.1",
"prop-types": "^15.7.2"
},
"10up-toolkit": {
"devUrl": "http://localhost:8888",
"entry": {
"admin": "./assets/js/admin/admin.js",
"frontend": "./assets/js/frontend/frontend.js",
"shared": "./assets/js/shared/shared.js"
}
}
}