forked from DeepNotesApp/DeepNotes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.16 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
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
{
"name": "deepnotes",
"version": "0.0.0",
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@deeplib/tsconfig": "workspace:*",
"@eslint/js": "^9.17.0",
"@quasar/icongenie": "^3.1.1",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-prettier": "^5.2.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-unused-imports": "^4.1.0",
"eslint-plugin-vue": "^9.32.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"sonarqube-scanner": "^3.0.0",
"standard-version": "^9.5.0",
"syncpack": "^11.2.1",
"tsc-alias": "~1.8.10",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.2",
"turbo": "^2.3.0",
"typescript": "~5.7.3",
"typescript-eslint": "^8.18.0",
"vitest": "^4.0.18"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=20.0.0"
},
"packageManager": "pnpm@10.30.1",
"private": true,
"scripts": {
"build": "turbo run build",
"spa:build": "pnpm --filter @deepnotes/client run build:spa",
"build:watch": "turbo run build:watch",
"clean": "turbo run clean",
"dev": "turbo run dev --parallel",
"spa:dev": "pnpm --filter @deepnotes/client run dev:spa",
"fix": "turbo run fix --parallel",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"npkill": "turbo run npkill && rimraf ./node_modules",
"preinstall": "npx only-allow pnpm",
"release": "standard-version",
"repo:build": "tsc --build tsconfig.packages.json; turbo run repo:build --parallel",
"repo:build:watch": "concurrently \"tsc --build tsconfig.packages.json --watch\" \"turbo run repo:build:watch --parallel\"",
"test": "vitest",
"sonar": "sonar-scanner"
},
"standard-version": {
"skip": {
"changelog": true
}
},
"workspaces": [
"apps/**",
"packages/**"
],
"pnpm": {
"overrides": {
"prosemirror-model": "~1.18.3",
"prosemirror-view": "~1.29.2"
},
"patchedDependencies": {
"libsodium-wrappers-sumo@0.7.16": "patches/libsodium-wrappers-sumo@0.7.16.patch"
}
}
}