forked from SAP/luigi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.16 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
32
33
34
{
"name": "luigi-example-svelte",
"version": "0.1.0",
"devDependencies": {
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"mini-css-extract-plugin": "^0.6.0",
"node-sass": "^4.13.1",
"serve": "^11.0.0",
"style-loader": "^0.23.1",
"svelte": "^3.20.1",
"svelte-loader": "2.13.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"concurrently": "^5.1.0",
"local-web-server": "^3.0.7"
},
"scripts": {
"build:prod": "NODE_ENV=production webpack --display-error-details",
"build:dev": "webpack",
"dev": "concurrently \"npm run build:dev -- --watch\" \"npm run serve:luigi\" \"npm run serve:microfrontend\"",
"serve": "concurrently \"npm run build:prod \" \"npm run serve:luigi\" \"npm run serve:microfrontend\"",
"serve:luigi": "cd public && ws --spa index.html --port 5000",
"serve:microfrontend": "cd public && ws --spa mf.html --port 5001"
},
"dependencies": {
"@luigi-project/client": "^1.17.0",
"@luigi-project/core": "^1.17.0",
"@sap-theming/theming-base-content": "^11.1.28",
"fundamental-styles": "^0.18.0",
"svelte-routing": "^1.4.2"
}
}