-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 1.05 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
{
"name": "clairebones.github.io",
"version": "0.1.0",
"description": "Personal portfolio and information page",
"scripts": {
"autoprefixer": "postcss -u autoprefixer -b 'last 2 versions' -r build/css/*",
"imagemin": "imagemin --plugin=pngquant assets/img/* --out-dir=build/assets/img/",
"styles": "node-sass src/style --output=build/css/ --output-style=compressed && npm run autoprefixer",
"scripts": "uglifyjs src/js/*.js -m -c -o build/js/app.min.js",
"build": "npm run imagemin && npm run styles",
"watch": "nodemon -e scss --watch src/style -x \"npm run styles\""
},
"repository": {
"type": "git",
"url": "https://github.com/clairebones/clairebones.github.io"
},
"author": "clairebones",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^10.3.1",
"imagemin-cli": "^7.0.0",
"imagemin-pngquant": "^9.0.2",
"node-sass": "^6.0.1",
"nodemon": "^2.0.12",
"postcss-cli": "^8.3.1",
"uglify-js": "^3.14.1"
}
}