-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.67 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "static-site-template",
"version": "1.0.0",
"description": "Static site template. Just install dependencies and start coding.",
"license": "MIT",
"scripts": {
"build": "parcel build ./src/*.html",
"build:dev": "parcel build ./src/*.html --no-source-maps --no-content-hash --no-minify --no-cache --public-url ./",
"dev": "concurrently --kill-others 'node ./tools/watcher.js' 'parcel ./src/index.html --open'",
"start": "npm run build:dev && npm run dev",
"export": "npm run build:dev && node ./tools/archiver.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Pepa Linha",
"devDependencies": {
"archiver": "^5.1.0",
"concurrently": "^5.3.0",
"fs": "0.0.1-security",
"multi-glob": "^1.0.2",
"parcel-bundler": "^1.12.4",
"parcel-plugin-custom-dist-structure": "^1.1.16",
"parcel-plugin-html-root-syntax": "^0.0.3",
"parcel-plugin-imagemin": "^4.0.2",
"parcel-plugin-nuke-dist": "^1.0.1",
"parcel-plugin-static-files-copy": "^2.6.0",
"posthtml-alt-always": "^1.0.1",
"posthtml-beautify": "^0.7.0",
"posthtml-extend": "^0.6.0",
"posthtml-inline-svg": "^0.2.0",
"posthtml-modules": "^0.6.4",
"sass": "^1.29.0"
},
"customDistStructure": {
"config": {
"assets/js": [
".js",
".js.map"
],
"assets/images": [
".jpg",
".png"
],
"assets/css": [
".css",
".css.map"
]
},
"options": {
"development": true
}
},
"staticFiles": {
"staticPath": [
{
"staticPath": "vendor",
"staticOutDir": "assets/vendor"
}
],
"watcherGlob": "**"
}
}