-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 924 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 924 Bytes
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
{
"name": "@soma/papyrus-theme",
"version": "0.0.1",
"description": "",
"license": "MIT",
"author": {
"name": "Niklas Rosenqvist",
"url": "https://www.nsrosenqvist.com/",
"email": "niklas.s.rosenqvist@gmail.com"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"bootstrap": "^4.3.1",
"del-cli": "^3.0.0",
"jquery": "^3.4.1",
"parcel-bundler": "^1.12.3",
"popper.js": "^1.15.0",
"sass": "^1.23.0-module.beta.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "parcel watch styles.html scripts.html --public-url \"/themes/papyrus-theme/\"",
"build": "parcel build styles.html scripts.html --public-url \"/themes/papyrus-theme/\"",
"clean": "del-cli dist/*",
"release": "del-cli dist/* && parcel build styles.html scripts.html --public-url \"/themes/papyrus-theme/\"",
"serve": "php ../../appctrl app:serve"
}
}