-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.75 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
{
"name": "live-design-website",
"version": "4.0.1",
"description": "Live Design Website",
"author": "Renan Sigolo <renan.sigolo@gmail.com>",
"license": "Apache-2.0",
"main": "index.html",
"scripts": {
"build": "hugo",
"clean": "rm -rf package-lock.json node_modules resources dist .firebase $TMPDIR/hugo_cache/",
"deploy": "npm run build && firebase deploy",
"fix": "npm run lint:js -- --fix && npm run lint:style -- --fix",
"format": "node scripts/sort-html.js && prettier '**/*' --write --ignore-unknown",
"lint:js": "eslint 'assets/js/**/*.js'",
"lint:style": "stylelint 'assets/**/*.{scss,css}'",
"postinstall": "scripts/setup-hooks.sh",
"preview": "hugo --baseURL='/' && npx serve dist",
"start": "hugo serve -D",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@fortawesome/fontawesome-free": "6.2.1",
"@fullhuman/postcss-purgecss": "5.0.0",
"@materializecss/materialize": "1.1.0-alpha",
"cssnano": "5.1.14",
"modern-normalize": "1.1.0"
},
"devDependencies": {
"@commitlint/cli": "17.3.0",
"@commitlint/config-conventional": "17.3.0",
"@commitlint/prompt-cli": "17.3.0",
"@csstools/postcss-sass": "5.0.1",
"cssnano-preset-advanced": "5.3.9",
"eslint": "8.29.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"postcss": "8.4.20",
"postcss-cli": "10.1.0",
"posthtml": "0.16.6",
"posthtml-attrs-sorter": "1.1.0",
"prettier": "2.8.1",
"prettier-plugin-go-template": "0.0.13",
"stylelint": "14.16.0",
"stylelint-config-prettier": "9.0.4",
"stylelint-config-recommended-scss": "8.0.0",
"stylelint-config-sass-guidelines": "9.0.1"
}
}