-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.24 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
{
"name": "db-ui-livedemo",
"version": "0.1.0",
"description": "DB UI Live Demo",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\"",
"build": "sass scss:public/css --load-path=node_modules",
"build:watch": "nodemon --watch scss -e scss -x \"npm run build\"",
"copy:assets": "cpr node_modules/vue/dist/ public/js/vue/ -o && cpr node_modules/@db-ui/core/dist/fonts public/fonts -o && cpr node_modules/@db-ui/core/dist/icons public/icons -o && cpr node_modules/@db-ui/core/dist/images public/images -o && cp node_modules/iframe-resizer/js/iframeResizer.contentWindow.js public/js/iframeResizer.contentWindow.js && cp node_modules/@db-ui/core/dist/favicon.ico public/favicon.ico",
"serve": "npx http-server public -o",
"start": "npm-run-all --parallel copy:assets serve build:watch",
"postinstall": "npm run copy:assets",
"prepare": "husky"
},
"author": "Kai Zwier",
"license": "Apache-2.0",
"devDependencies": {
"@db-ui/core": "^3.2.7",
"cpr": "^3.0.1",
"http-server": "^14.1.1",
"husky": "^9.1.7",
"iframe-resizer": "^4.4.5",
"nodemon": "^3.1.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"sass": "^1.81.0",
"vue": "^3.2.31"
},
"private": true
}