-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
54 lines (54 loc) · 1.91 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
{
"name": "buttonbuddy",
"version": "0.1.0",
"description": "",
"main": "public/index.html",
"scripts": {
"watch:sass": "sass --no-source-map --watch src/sass:public/css",
"watch:eleventy": "eleventy --serve",
"watch:js": "parcel watch src/js/index.js --out-dir public",
"build:sass-site": "sass --no-source-map src/sass/style.scss public/css/style.css",
"build:sass": "npm-run-all --parallel build:sass-site",
"build:eleventy": "eleventy",
"build:js": "parcel build src/js/index.js --out-dir public --target browser",
"postbuild": "postcss public/css/*.css -u autoprefixer cssnano -r --no-map",
"start:remove": "node onStart.js",
"start": "cross-env ELEVENTY_ENV=dev npm-run-all clean start:remove build:sass --parallel watch:*",
"build": "cross-env ELEVENTY_ENV=prod npm-run-all clean build:js hash build:sass build:eleventy",
"lint": "stylelint 'src/sass/**/*.scss' 'src/sass/**/**/*.scss' 'src/sass/**/**/**/*.scss'",
"lint:fix": "stylelint --fix 'src/sass/**/*.scss' 'src/sass/**/**/*.scss' 'src/sass/**/**/**/*.scss'",
"bump": "npm --no-git-tag-version version",
"clean": "rm -rf public",
"hash": "node onBuild.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/5t3ph/buttonbuddy.git"
},
"keywords": [],
"author": "5t3ph",
"license": "ISC",
"bugs": {
"url": "https://github.com/5t3ph/buttonbuddy/issues"
},
"devDependencies": {
"@11ty/eleventy": "^0.11.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.1",
"a11ycolor": "^2.0.9",
"autoprefixer": "^10.1.0",
"clipboard-copy": "^4.0.1",
"color-contrast": "^1.0.0",
"cross-env": "^7.0.2",
"cssnano": "^4.1.10",
"md5": "^2.3.0",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.4",
"postcss": "^8.2.2",
"postcss-cli": "^8.3.1",
"sass": "^1.26.10",
"terser": "^5.5.1"
},
"browserslist": [
"last 2 versions"
]
}