-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.15 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
{
"name": "terragrams.com",
"version": "1.0.0",
"description": "The Terragrams website",
"repository": "https://github.com/philipbelesky/terragrams",
"main": "index.js",
"scripts": {
"test": "htmlproofer --extension .html ./public",
"lint": "stylelint 'sass/**/*.scss' --config 'sass/.stylelintrc'",
"lint-fix": "stylelint 'sass/**/*.scss' --config 'sass/.stylelintrc' --fix",
"bundle": "npx terser ./node_modules/instant.page/instantpage.js ./static/main.js --compress --mangle --output 'static/main.min.js' --source-map 'filename'='static/main.min.js.map'",
"serve": "./zola serve --drafts -p 4003 --interface 0.0.0.0 --base-url 192.168.1.100",
"preview": "./zola serve -p 4003 --interface 0.0.0.0 --base-url 192.168.1.100",
"build": "npm run bundle && zola build"
},
"author": "Philip Belesky",
"license": "ISC",
"dependencies": {
"bulma": "^0.9.4",
"html-proofer": "0.0.1",
"instant.page": "^5.1.0",
"path-parse": "^1.0.7",
"postcss": "^8.3.6",
"terser": "^5.8.0",
"trim-newlines": "^4.0.2"
},
"devDependencies": {
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0"
}
}