-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathpackage.json
132 lines (132 loc) · 4.47 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "fiction-os",
"type": "module",
"version": "6.0.35",
"private": true,
"author": "Fiction",
"license": "MIT",
"main": "index.ts",
"publishConfig": {
"access": "restricted"
},
"engines": {
"node": ">=23.5.0"
},
"scripts": {
"render": "npm exec -- fiction run render",
"deploy": "flyctl deploy . --config ./fly/$DOMAIN.$APP.toml --remote-only --detach",
"release": "npm exec -- fiction run release --patch --skip-tests --with-changes --tag",
"bump": "npm exec -- fiction run release --patch --skip-tests --version-only",
"push-release": "git checkout release && git rebase dev && git push --no-verify && git checkout dev",
"test": "npm run lint:dev && npm run unit:dev",
"test:pkgJson": "npx npmPkgJsonLint .",
"fix-deps": "syncpack fix-mismatches",
"cloudinary:urls": "tsx ./scripts/cloudinaryUrls.ts",
"gen:googleFonts": "tsx ./scripts/genGoogleFontList.ts",
"generate": "npm exec -w @fiction/www -- fiction run generate",
"changelog": "npm exec -- conventional-changelog -p angular -i CHANGELOG.md -s",
"app:dev": "npm exec -w @fiction/www -- fiction run dev",
"app:dev-r": "npm exec -w @fiction/www -- fiction run dev-r",
"unit:ci": "npm exec -- vitest run unit -u",
"unit:build": "npm exec -- vitest run build -u --no-file-parallelism",
"unit:dev": "npm exec -- vitest run unit -u --coverage",
"unit:e2e": "npm exec -- vitest e2e",
"unit:all": "npm exec -- vitest wip && npm exec -- vitest ci && npm exec -- vitest build",
"unit:dist": "npm exec -- vitest dist",
"unit:coverage": "npm exec -- vitest run unit --coverage -u",
"types:ci": "npm exec -- vue-tsc",
"types:dev": "npm exec -- vue-tsc --watch --preserveWatchOutput",
"lint:dev": "npm exec -- eslint . --fix --cache --color --quiet",
"lint:view": "npx eslint-flat-config-viewer",
"i:clear": "rm pnpm-lock.yaml && find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"prep": "npm run i && npm run lint:dev && npm run generate",
"i": "pnpm i && pnpm up -r && pnpm outdated -r && npm run i:lockfile",
"i:lockfile": "pnpm i --lockfile-only",
"i:full": "pnpm i:clear && npm run i",
"docs:dev": "vitepress dev docs --host",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"structure": "python ./scripts/project_structure.py > structure.json"
},
"workspaces": [
"@fiction/core",
"@fiction/ui",
"@fiction/www",
"@fiction/site",
"@fiction/analytics",
"@fiction/admin",
"@fiction/cards",
"@fiction/platform",
"@fiction/posts",
"@fiction/themes/*",
"@fiction/plugins/*"
],
"simple-git-hooks": {
"pre-push": "npm run types:ci"
},
"dependencies": {
"@changesets/cli": "^2.27.11",
"@fiction/core": "workspace:*",
"@fiction/site": "workspace:*",
"@fiction/ui": "workspace:*",
"@fiction/www": "workspace:*",
"@google-cloud/vision": "^4.3.2",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/browser": "^2.1.8",
"axios": "^1.7.9",
"cloudinary": "^2.5.1",
"commander": "^13.0.0",
"conventional-changelog-cli": "^5.0.0",
"cross-env": "^7.0.3",
"deepmerge": "^4.3.1",
"dotenv": "^16.4.7",
"execa": "^9.5.2",
"fake-indexeddb": "^6.0.0",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"minimist": "^1.2.8",
"node-fetch": "^3.3.2",
"textlint": "^14.4.2",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"vite": "^6.0.6",
"vitest": "^2.1.8",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.1",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@flydotio/dockerfile": "^0.5.9",
"@playwright/test": "^1.49.1",
"@types/eslint__eslintrc": "^2.1.2",
"@types/eslint__js": "^8.42.3",
"@types/express": "^5.0.0",
"@types/node": "^22.10.3",
"@vitest/coverage-istanbul": "^2.1.8",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.17.0",
"happy-dom": "^16.3.0",
"jsdom": "^25.0.1",
"ngrok": "5.0.0-beta.2",
"nodemon": "^3.1.9",
"npm-package-json-lint": "^8.0.0",
"playwright": "^1.49.1",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"sharp": "^0.33.5",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.17",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"vitepress": "^1.5.0",
"vue-tsc": "^2.2.0"
},
"pnpm": {
"overrides": {
"isomorphic-dompurify": "2.10.0"
}
}
}