-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.05 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": "@tangible/framework",
"description": "Framework module",
"homepage": "https://github.com/tangibleinc/framework",
"repository": "[email protected]:tangibleinc/framework.git",
"type": "module",
"scripts": {
"start": "wp-now start --blueprint=blueprint.dev.json",
"dev": "roll dev",
"build": "roll build",
"format": "roll format",
"test": "roll run tests/index.ts",
"version": "node version.js",
"subrepo": "git-subrepo",
"-- End-to-end testing --": "https://playwright.dev/",
"e2e": "playwright test --config tests/playwright.config.js",
"e2e:install": "playwright install chromium",
"e2e:debug": "npm run e2e -- --debug",
"e2e:ui": "npm run e2e -- --ui"
},
"devDependencies": {
"@playwright/test": "^1.48.1",
"@tangible/git-subrepo": "^1.0.1",
"@tangible/now": "^1.1.3",
"@tangible/roller": "^2.1.4",
"@wordpress/e2e-test-utils-playwright": "^1.10.0",
"testra": "^2.1.4"
},
"prettier": {
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"useTabs": false
}
}