-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.74 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
{
"name": "pie-aperture",
"version": "0.1.0",
"private": true,
"bin": {
"update-snapshots": "./scripts/update-snapshots.mjs"
},
"scripts": {
"build": "turbo run build --token=${TURBO_TOKEN}",
"cz": "./node_modules/cz-customizable/standalone.js",
"dev": "turbo run dev",
"generate": "turbo run generate --token=${TURBO_TOKEN}",
"lint": "turbo run lint --token=${TURBO_TOKEN}",
"test:ssr": "turbo run test:ssr --token=${TURBO_TOKEN} --continue",
"test:system": "turbo run test:system --token=${TURBO_TOKEN} --continue",
"playwright:show-report": "turbo run playwright:show-report",
"preview": "turbo run preview",
"test:visual": "turbo run test:visual",
"upgrade-pie-packages": "turbo run upgrade-pie-packages && yarn"
},
"dependencies": {
"commitizen": "4.3.1",
"cz-customizable": "7.2.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-config.js"
}
},
"devDependencies": {
"@percy/cli": "1.30.7",
"@percy/selenium-webdriver": "2.2.2",
"@playwright/test": "1.50.1",
"@types/follow-redirects": "1.14.4",
"@types/node": "20.17.9",
"@wdio/browserstack-service": "8.40.6",
"@wdio/cli": "8.40.6",
"@wdio/local-runner": "8.40.6",
"@wdio/mocha-framework": "8.40.6",
"@wdio/spec-reporter": "8.40.6",
"cross-env": "7.0.3",
"follow-redirects": "1.15.9",
"playwright-merge-html-reports": "0.2.8",
"selenium-webdriver": "4.27.0",
"turbo": "1.13.4"
},
"resolutions": {
"rimraf": "3.0.2",
"glob": "10.4.5"
},
"workspaces": [
"nextjs-app-v14",
"nuxt-app",
"vanilla-app"
],
"volta": {
"node": "20.18.1",
"yarn": "3.5.0"
}
}