-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 730 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 730 Bytes
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
{
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"axios": "^0.21.1",
"chalk": "^4.1.1",
"cypress": "^7.0.0",
"cypress-plugin-tab": "^1.0.5",
"dot-json": "^1.2.2",
"esbuild": "~0.16.17",
"jest": "^26.6.3",
"vitest": "^3.2.4"
},
"scripts": {
"build": "node ./scripts/build.js",
"watch": "node ./scripts/build.js --watch",
"test": "cypress run --quiet",
"cypress": "cypress open",
"vitest": "vitest run",
"update-docs": "node ./scripts/update-docs.js",
"release": "node ./scripts/release.js",
"prep-release": "node ./scripts/prep-release.js"
}
}