-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1.3 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
{
"name": "doc-version",
"version": "1.0.0",
"description": "",
"scripts": {
"sync:monaco": "node DocVersion.Server/wwwroot/js/vendor/scripts/sync-monaco.mjs",
"build-css": "sass DocVersion.Server/src/styles.scss DocVersion.Server/wwwroot/css/styles.css --no-source-map",
"build-js": "esbuild DocVersion.Server/src/index.ts --bundle --outfile=DocVersion.Server/wwwroot/js/index.js --format=esm --target=es2020",
"build": "npm run sync:monaco && npm run build-css && npm run build-js && tsc -p DocVersion.Server --noEmit",
"dev-css": "sass DocVersion.Server/src/styles.scss DocVersion.Server/wwwroot/css/styles.css --watch --no-source-map",
"dev-js": "npm run sync:monaco && esbuild DocVersion.Server/src/index.ts --bundle --outfile=DocVersion.Server/wwwroot/js/index.js --format=esm --target=es2020 --watch",
"dev-dotnet": "dotnet watch run --project DocVersion.Server",
"dev": "concurrently \"npm run dev-css\" \"npm run dev-js\" \"npm run dev-dotnet\""
},
"keywords": [],
"author": "",
"license": "MIT",
"type": "module",
"dependencies": {
"@microsoft/signalr": "^10.0.0",
"xlsx-js-style": "^1.2.0"
},
"devDependencies": {
"concurrently": "^10.0.3",
"esbuild": "^0.28.0",
"monaco-editor": "0.45.0",
"sass": "^1.99.0",
"typescript": "^6.0.2"
}
}