-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 942 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
{
"name": "@ci-cd/playground-monorepo",
"version": "0.0.0",
"description": "Playground for testing GitHub CI/CD",
"type": "module",
"scripts": {
"test": "npm run test --workspace=@ci-cd/test",
"deploy:pages": "npm run build:abcd && npm run build --workspace=@ci-cd/pages",
"build:abcd": "npm run build --workspace=@ci-cd/abcd",
"publish:abcd": "npm run build:abcd && npm run publish:dryrun --workspace=@ci-cd/abcd",
"serve": "npx http-server out",
"cypress:ci": "cypress run",
"cypress:local": "cypress open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/db-ui/cicd-playground.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/db-ui/cicd-playground/issues"
},
"homepage": "https://github.com/db-ui/cicd-playground#readme",
"workspaces": [
"packages/*"
],
"devDependencies": {
"cypress": "^12.5.1",
"got": "^12.5.3"
}
}