forked from nocodb/nocodb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.29 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.29 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
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
{
"name": "nocodb-root",
"description": "NocoDB Root",
"private": true,
"author": {
"name": "NocoDB Inc",
"url": "https://nocodb.com/"
},
"homepage": "https://github.com/nocodb/nocodb",
"repository": {
"type": "git",
"url": "https://github.com/nocodb/nocodb.git"
},
"bugs": {
"url": "https://github.com/nocodb/nocodb/issues"
},
"license": "Sustainable Use License",
"devDependencies": {
"husky": "^8.0.3",
"lerna": "^8.2.2",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
},
"husky": {
"hooks": {
"pre-commit": "pnpm dlx lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,json}": []
},
"scripts": {
"bootstrap": "pnpm --filter=nocodb-sdk install && pnpm --filter=nocodb-sdk run build && pnpm --filter=nocodb --filter=nc-mail-templates --filter=nc-gui install && pnpm run integrations:build && pnpm run registerIntegrations",
"integrations:build": "cd ./packages/noco-integrations/ && pnpm i && pnpm run build",
"start:frontend": "pnpm --filter=nc-gui run dev",
"start:backend": "pnpm --filter=nocodb run start",
"prepare": "husky install",
"preinstall": "npx only-allow pnpm",
"registerIntegrations": "pnpm --filter=nocodb run registerIntegrations",
"install:local-sdk": "node scripts/installLocalSdk.js"
},
"pnpm": {
"overrides": {
"**>ip": "npm:@eggjs/ip@latest",
"vue@*": "3.5.14",
"@vue/runtime-core@*": "3.5.14",
"@vue/runtime-dom@*": "3.5.14",
"@azure/msal-node": "^2.16.2",
"@babel/traverse@<7.23.2": ">=7.23.2",
"ajv@<6.12.3": ">=6.12.3",
"axios@>=0.8.1 <0.28.0": ">=0.28.0",
"axios@>=1.0.0 <1.13.5": ">=1.13.5",
"follow-redirects@<1.15.4": ">=1.15.4",
"node.extend@<1.1.7": ">=1.1.7",
"tough-cookie": "^5.1.0",
"typescript": "5.8.3",
"ufo": ">=1.5.4",
"whatwg-url": "13.0.0",
"ws@<8.17.1": ">=8.17.1",
"xml2js@<0.5.0": ">=0.5.0",
"**>ent": "npm:ent-replace@latest",
"image-size@<1.2.1": ">=1.2.1",
"tar-fs@<2.1.2": ">=3.0.7",
"highlight.js@<9.18.5": ">=11.11.1",
"multer@1.4.4-lts.1": ">=2.0.2",
"vue-i18n@<9.14.5": ">=9.14.5",
"knex@<3.1.0": ">=3.1.0",
"cookie": ">=0.7.2",
"@azure/identity@<4.2.1": ">=4.2.1",
"cross-spawn@<7.0.5 >=7.0.0": ">=7.0.5",
"dset@<3.1.4": ">=3.1.4",
"http-proxy-middleware@<2.0.9": "2.0.9",
"@babel/runtime@<7.22.11": ">=7.26.10",
"tar@<6.2.1": ">=6.2.1",
"braces@<3.0.3": ">=3.0.3",
"micromatch@<4.0.8": ">=4.0.8",
"nanoid@<3.3.8": ">=3.3.8",
"esbuild@<=0.24.2": ">=0.25.0",
"vite@>=6.1.0 <6.1.2": ">=6.1.2",
"vite@>=6.1.0 <6.1.3": ">=6.1.3",
"vite@>=6.1.0 <6.1.5": ">=6.1.5",
"@babel/helpers@<7.26.10": ">=7.26.10",
"vite@>=6.0.0 <=6.1.5": ">=6.1.6",
"vite@>=6.1.0 <6.1.4": ">=6.1.4",
"@75lb/deep-merge@<=1.1.1": ">=1.1.2",
"@babel/runtime@<7.26.10": ">=7.26.10",
"lodash": ">=4.17.23",
"linkifyjs@<4.3.2": ">=4.3.2",
"qs@<6.14.1": ">=6.14.1",
"h3@<=1.15.4": ">=1.15.5"
},
"onlyBuiltDependencies": [
"@nestjs/core",
"@parcel/watcher",
"@swc/core",
"core-js",
"esbuild",
"msgpackr-extract",
"nx",
"sharp",
"sqlite3",
"vue-demi"
]
}
}