-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 912 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 912 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
29
{
"name": "devdojo.it",
"version": "0.0.2",
"description": "Web Site of DevDojo.it",
"repository": "git@github.com:devdojo-it/devdojo.it.git",
"author": "DevDojo",
"license": "MIT",
"private": false,
"scripts": {
"clear:cache": "rm -rf .parcel-cache dist",
"clear": "yarn clear:cache && rm -rf node_modules yarn.lock",
"reset": "yarn clear && yarn",
"prestart": "yarn clear:cache && yarn ssg",
"start": "parcel ./src/index.html",
"ssg": "node --env-file=.env --experimental-modules ./src/scripts/ssg.js",
"prebuild": "yarn clear:cache && yarn ssg",
"build": "parcel build ./src/index.html"
},
"devDependencies": {
"parcel": "2.16.3",
"posthtml": "0.16.7",
"posthtml-doctype": "1.1.1",
"posthtml-expressions": "^1.11.4",
"posthtml-extend": "0.6.5",
"posthtml-include": "2.0.1",
"posthtml-modules": "0.9.1",
"svgo": "3.3.2"
}
}