-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 993 Bytes
/
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
{
"name": "hyas",
"private": true,
"browserslist": [
"defaults"
],
"scripts": {
"start": "hugo server",
"build": "hugo && npm run build:functions",
"build:functions": "netlify-lambda build assets/lambda",
"build:preview": "npm run build -D -F",
"server": "hugo server",
"clean": "rimraf public resources functions",
"lint": "npm run -s lint:scripts && npm run -s lint:styles",
"lint:scripts": "eslint assets/js assets/lambda config",
"lint:styles": "stylelint \"assets/sass/**/*.{css,sass,scss,sss,less}\"",
"test": "npm run -s lint"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^1.3",
"autoprefixer": "^9.7",
"eslint": "^6.7",
"netlify-lambda": "^1.6",
"postcss-cli": "^6.1",
"purgecss-whitelister": "^2.4",
"rimraf": "^3.0",
"stylelint": "^12.0",
"stylelint-config-standard": "^19.0"
},
"dependencies": {
"bootstrap": "^4.4",
"lazysizes": "^5.2"
},
"version": "0.0.0"
}