-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.23 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.23 KB
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
{
"name": "git-cms",
"version": "1.1.3",
"description": "A serverless, database-free CMS built on Git plumbing.",
"type": "module",
"bin": {
"git-cms": "./bin/git-cms.js"
},
"scripts": {
"serve": "node bin/git-cms.js serve",
"dev": "docker compose up app",
"demo": "./scripts/demo.sh",
"quickstart": "./scripts/quickstart.sh",
"setup": "./scripts/setup.sh",
"check:deps": "node scripts/check-dependency-integrity.mjs",
"test": "./test/run-docker.sh",
"test:setup": "./test/run-setup-tests.sh",
"test:local": "vitest run",
"test:e2e": "playwright test",
"test:git-e2e": "vitest run --config vitest.e2e.config.js test/git-e2e.test.js"
},
"author": "James Ross <james@flyingrobots.dev>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/flyingrobots/git-cms.git"
},
"dependencies": {
"@git-stunts/alfred": "^0.10.3",
"@git-stunts/docker-guard": "^0.1.0",
"@git-stunts/git-cas": "^3.0.0",
"@git-stunts/git-warp": "^10.8.0",
"@git-stunts/plumbing": "^2.8.0",
"@git-stunts/trailer-codec": "^2.1.1",
"@git-stunts/vault": "^1.0.0"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"vitest": "^4.0.16"
}
}