-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.56 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.56 KB
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
{
"name": "components",
"author": "wes hatch",
"license": "MIT",
"version": "1.0.0",
"description": "A showcase of handy components",
"repository": {
"type": "git",
"url": "https://github.com/apathetic/showcase"
},
"devDependencies": {
"@apatheticwes/flexicarousel": "^0.8.2",
"@apatheticwes/stickynav": "^0.5.2",
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-node-resolve": "^11.1.1",
"autoprefixer": "^6.7.7",
"csso-cli": "^1.0.0",
"eslint": "^7.19.0",
"eslint-config-google": "^0.14.0",
"node-sass": "^5.0.0",
"npm-run-all": "^4.0.2",
"postcss-cli": "^3.1.1",
"rollup": "^2.38.4",
"rollup-plugin-uglify": "^1.0.2",
"stylelint": "^7.10.1",
"stylelint-config-standard": "^16.0.0",
"watch": "^1.0.2"
},
"scripts": {
"clean": "rm -rf dist/**/*",
"lint:css": "stylelint source/sass/**/*.scss --syntax scss",
"lint:js": "eslint source/js/*.js",
"build:css": "npm run lint:css && node-sass --include-path source/sass source/sass/main.scss | postcss --use autoprefixer | csso > dist/css/main.min.css",
"build:js": "npm run lint:js && rollup -c --environment entry:home && rollup -c --environment entry:component",
"build": "npm run clean && npm run build:js && npm run build:css && pipenv run grow build",
"watch:css": "SASS_ENV=development watch 'npm run build:css' source/sass",
"watch:js": "watch 'npm run build:js' source/js",
"watch": "run-p watch:**",
"serve": "pipenv run grow run",
"deploy": "./scripts/deploy.sh",
"start": "run-p watch:** serve"
}
}