forked from dennisreimann/bitcoindevlist.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.34 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
{
"version": "0.1.0",
"name": "bitcoin-donations",
"description": "Fund your favorite bitcoin contributors.",
"repository": "[email protected]:dennisreimann/bitcoin-donations.git",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"clean": "rm -rf dist",
"start": "npm-run-all clean build:copy -p start:*",
"start:pages": "npm run build:pages -- --watch --pretty",
"start:styles": "npm run build:styles -- --watch",
"start:serve": "browser-sync start --config browser-sync.config.js --watch",
"build": "npm-run-all clean -p build:* -s optimize",
"build:copy": "mkdir -p dist && cp src/*.svg dist",
"build:pages": "pug src -O pug.config.js --out dist",
"build:styles": "postcss src/index.css --output dist/index.css",
"optimize": "npm-run-all -p optimize:*",
"optimize:styles": "csso dist/index.css --output dist/index.css",
"prod": "npm-run-all build optimize"
},
"devDependencies": {
"acorn": "7.1.1",
"autoprefixer": "9.7.6",
"browser-sync": "2.26.7",
"csso-cli": "3.0.0",
"npm-run-all": "4.1.5",
"onchange": "7.0.2",
"postcss-calc": "7.0.2",
"postcss-cli": "7.1.1",
"postcss-custom-media": "7.0.8",
"postcss-custom-properties": "9.1.1",
"postcss-media-variables": "2.0.1",
"postcss-nesting": "7.0.1",
"pug-cli": "1.0.0-alpha6"
}
}