-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.28 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.28 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
{
"name": "@blinkk/root-project",
"version": "1.0.0",
"private": true,
"description": "Root.js is a developer-focused CMS that writes directly to Firestore.",
"packageManager": "pnpm@8.9.0",
"main": "index.js",
"scripts": {
"cms:dev": "./scripts/dev_cms.sh",
"build": "turbo run build --filter=\"@blinkk/*\"",
"changeset": "changeset",
"lint": "eslint . --ext .ts,.tsx",
"fix": "eslint . --ext .ts,.tsx --fix",
"version": "changeset version && pnpm install --no-frozen-lockfile",
"release": "pnpm run build && changeset publish",
"test": "pnpm run build && turbo run test",
"test:prod": "turbo run test:prod --filter=\"@examples/blog\"",
"// workspace aliases": "",
"blog": "pnpm run --filter=\"@examples/blog\"",
"starter": "pnpm run --filter=\"@examples/starter\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/blinkk/rootjs.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/blinkk/rootjs/issues"
},
"homepage": "https://github.com/blinkk/rootjs#readme",
"devDependencies": {
"@blinkk/eslint-config-root": "workspace:*",
"@changesets/cli": "^2.26.2",
"eslint": "^8.51.0",
"prettier": "^3.0.3",
"turbo": "^1.10.15",
"typescript": "^5.2.2"
}
}