-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 923 Bytes
/
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
{
"name": "dubinc",
"version": "1.0.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",
"lint-php": "./vendor/bin/phpcs ./includes --standard=ruleset.xml",
"fix-php": "./vendor/bin/phpcbf ./includes --standard=ruleset.xml",
"test": "10up-toolkit test-unit-jest",
"clean-dist": "rm -rf ./dist"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"10up-toolkit": "^6.2.0"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"10up-toolkit": {
"entry": {
"admin": "./assets/js/admin/admin.js",
"frontend": "./assets/js/frontend/frontend.js",
"shared": "./assets/js/shared/shared.js",
"editor": "./assets/js/editor/index.js"
}
}
}