-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 1.09 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
{
"name": "verdant",
"version": "0.1.0-rc.11",
"private": true,
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run ci:test:unit && turbo run ci:test:integration",
"test:integration": "pnpm -F @verdant-web/test test",
"ci:test:unit": "turbo run ci:test:unit",
"ci:test:integration": "turbo run ci:test:integration",
"test:watch": "turbo run test",
"ci:version": "pnpm changeset version",
"ci:publish": "pnpm changeset publish --access=public",
"prerelease": "pnpm changeset pre enter next",
"link": "pnpm link --global",
"benchmark": "pnpm run --filter @verdant-web/test benchmark",
"typecheck": "turbo run typecheck"
},
"repository": "https://github.com/a-type/verdant",
"author": "Grant Forrest <[email protected]>",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/node": "20.10.5",
"tsx": "^3.12.1",
"turbo": "^2.0.11",
"typescript": "^5.4.2"
},
"dependencies": {
"fake-indexeddb": "^5.0.1",
"prettier": "^3.0.3"
},
"volta": {
"node": "18.17.0"
}
}