-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
32 lines (32 loc) · 1 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
{
"name": "devsmeetup.github.io",
"version": "2.0.1",
"description": "Website for Devsmeetup",
"main": "src/index.pug",
"engines": {
"node": ">=10.0.0"
},
"repository": "[email protected]:sebald/devsmeetup.github.io.git",
"author": "Devsmeetup Orga",
"license": "MIT",
"private": true,
"devDependencies": {
"del-cli": "^3.0.0",
"fs-extra": "^8.1.0",
"globby": "^10.0.1",
"got": "^9.6.0",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.5",
"parcel-bundler": "1.12.4",
"pug": "^2.0.4",
"read-config": "^2.0.0"
},
"scripts": {
"start": "MEETUP=$(node scripts/getUpcomingMeetup) parcel src/index.pug --open --no-cache",
"build": "npm-run-all script:clean script:build script:copy script:manifest",
"script:build": "MEETUP=$(node scripts/getUpcomingMeetup) parcel build src/index.pug -d release --public-url ./",
"script:clean": "del release dist .cache",
"script:copy": "node scripts/copyFiles",
"script:manifest": "node scripts/fixManifest"
}
}