forked from SparkDevNetwork/Rock
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.24 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.24 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
{
"private": true,
"description": "Project for all Rock Obsidian UI functionality.",
"scripts": {
"build-fast": "node Build/build-fast.js",
"build": "npm run build-core && npm run build-framework && npm run copy-webforms-core && echo '' > dist/.buildstamp && echo DONE",
"build:types": "node ./Build/build-types.js",
"build-framework": "npm run build:types && node ./Build/rollup-mt.js Framework/rollup.config.cjs",
"build-core": "webpack --no-color && lessc --js System/vendor.less dist/System/obsidian-vendor.css && cleancss --source-map dist/System/obsidian-vendor.css -o dist/System/obsidian-vendor.min.css",
"watch": "node --max-old-space-size=8192 ./node_modules/rollup/dist/bin/rollup --config Framework/rollup.config.cjs --watch",
"copy-webforms-core": "copyfiles -u 2 \"dist/System/*\" \"../RockWeb/Obsidian/\"",
"clean": "rimraf dist",
"lint": "eslint --ext .ts --ext .obs Framework",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.3.1",
"@rollup/plugin-terser": "^0.4.4",
"@types/d3-cloud": "1.2.7",
"@types/dragula": "3.7.5",
"@types/google.maps": "3.58.1",
"@types/jest": "^29.5.14",
"@types/luxon": "^3.4.2",
"@types/node": "^20.19.25",
"@types/systemjs": "^6.15.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vue/test-utils": "^2.4.6",
"@vue/vue3-jest": "^29.2.6",
"clean-css-cli": "^5.6.3",
"copyfiles": "^2.4.1",
"cssnano": "^6.1.2",
"eol": "^0.9.1",
"eslint": "^8.57.1",
"eslint-plugin-vue": "^9.33.0",
"glob": "^12.0.0",
"jest": "^29.7.0",
"jest-editor-support": "^31.1.2",
"jest-environment-jsdom": "^29.7.0",
"less": "^4.4.2",
"rimraf": "^5.0.10",
"rollup": "^3.29.5",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-vue": "^6.0.0",
"semver": "^7.7.3",
"terser-webpack-plugin": "^5.3.14",
"ts-jest": "^29.4.5",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"ttypescript": "^1.5.15",
"typescript": "^5.9.3",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^2.1.6",
"webpack": "^5.102.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@cap.js/widget": "^0.1.31",
"@capaj/pluralize": "^1.0.4",
"@floating-ui/vue": "^1.1.9",
"@server-sent-stream/web": "^1.0.3",
"@types/pdfobject": "^2.2.5",
"ant-design-vue": "^3.2.20",
"axios": "^1.13.2",
"big.js": "^6.2.2",
"chart.js": "^4.5.1",
"chartjs-adapter-luxon": "^1.3.1",
"chartjs-plugin-annotation": "^3.1.0",
"chartjs-plugin-datalabels": "^2.2.0",
"cronstrue": "^3.9.0",
"cropperjs": "^1.6.2",
"d3-cloud": "^1.2.7",
"exceljs": "^4.4.0",
"highlight.js": "^11.11.1",
"html2canvas": "^1.4.1",
"html5-qrcode": "^2.3.8",
"konva": "^9.3.22",
"liquidjs": "^10.24.0",
"luxon": "^3.7.2",
"marked": "^16.4.2",
"mitt": "^3.0.1",
"pdfobject": "^2.3.1",
"systemjs": "^6.15.1",
"tinymce": "^6.8.6",
"tslib": "^2.8.1",
"vue": "^3.3.10"
}
}