-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 1.04 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
{
"name": "ddam",
"version": "0.1.0",
"devDependencies": {
"@parcel/transformer-sass": "^2.12.0",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"npm-run-all": "^4.1.5",
"parcel": "^2.12.0",
"sass": "1.77.6"
},
"config": {
"assets_src": "frontend",
"assets_dist": "ddam/static/dist"
},
"scripts": {
"watch:sass": "parcel watch --no-hmr $npm_package_config_assets_src/scss/app.scss --dist-dir $npm_package_config_assets_dist",
"build:sass": "parcel build $npm_package_config_assets_src/scss/app.scss --dist-dir $npm_package_config_assets_dist",
"watch:js": "parcel watch --no-hmr $npm_package_config_assets_src/js/app.js --dist-dir $npm_package_config_assets_dist",
"build:js": "parcel build $npm_package_config_assets_src/js/app.js --dist-dir $npm_package_config_assets_dist",
"dev": "npm-run-all watch:*",
"build": "npm-run-all build:*"
},
"repository": {
"url": "https://github.com/tombreit"
},
"author": "Thomas Breitner",
"license": "ISC"
}