-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
39 lines (39 loc) · 1.59 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
{
"name": "avatar-framer",
"version": "1.0.3",
"description": "",
"main": "postcss.config.js",
"dependencies": {
"@tailwindcss/aspect-ratio": "^0.2.2",
"browserify": "^17.0.0",
"concurrently": "^8.2.2",
"dropzone": "5.7.2",
"fabric": "^4.2.0",
"onchange": "^7.1.0",
"terser": "^5.3.4"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"autoprefixer": "^10.4.17",
"babelify": "^10.0.0",
"postcss": "^8.4.35",
"postcss-cli": "^8.0.0",
"tailwindcss": "^3.4.1"
},
"scripts": {
"js": "browserify _site/src/js/main.js -t babelify --outfile _site/dist/js/bundle.js",
"min": "terser _site/dist/js/bundle.js --compress --mangle -o _site/dist/js/bundle.js",
"css": "postcss src/css/styles.css -o dist/css/styles.css",
"prod-css": "postcss _site/src/css/styles.css -o _site/dist/css/styles.css",
"build": "bundle exec jekyll build && npm run js && npm run css && npm run prod-css && npm run min",
"build-docs": "npm run build && rsync -av * docs/ --exclude docs --exclude index.html --exclude _config.yml --exclude README.md",
"watch:css": "postcss src/css/styles.css -o dist/css/styles.css --watch",
"dev": "concurrently --kill-others-on-fail --names \"JS,JEKYLL,CSS\" --prefix-colors \"bgBlue.bold,bgGreen.bold,bgMagenta.bold\" \"npm run js\" \"sleep 5 && bundle exec jekyll serve --livereload --livereload-min-delay 2\" \"npm run watch:css\""
},
"keywords": [],
"author": "Andrew Quinn",
"license": "MIT"
}