-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 730 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "www-kristapsausters-lv",
"version": "1.1.1",
"private": true,
"main": "index.html",
"scripts": {
"start": "parcel index.html",
"start:work": "parcel darbs/index.html",
"start:work:en": "parcel darbs/index.en.html",
"prebuild": "rm -rf dist/*",
"build": "npm run build:main | npm run build:work | npm run build:work:en",
"build:main": "parcel build index.html --public-url ./",
"build:work": "parcel build darbs/index.html -d dist/darbs --public-url ./",
"build:work:en": "parcel build darbs/index.en.html -o index.html -d dist/work --public-url ./"
},
"license": "ISC",
"devDependencies": {
"parcel": "1.12.3",
"sass": "^1.64.1",
"typescript": "^5.6.3"
}
}