-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.35 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
{
"name": "resume",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "yarn build",
"watch": "yarn serve & yarn watch:css",
"serve": "browser-sync start --server --serveStatic dist --files 'dist/*.css, index.html'",
"dev:css": "NODE_ENV=development node ./node_modules/postcss-cli/bin/postcss ./src/resume.css -o ./dist/resume.css -m",
"watch:css": "NODE_ENV=development node ./node_modules/postcss-cli/bin/postcss ./src/resume.css -o ./dist/resume.css -w -m",
"build:css": "NODE_ENV=production node ./node_modules/postcss-cli/bin/postcss ./src/resume.css -o ./dist/resume.css --no-map",
"lint-css": "stylelint ./src/**/*.css",
"build": "yarn build:css && cpx ./index.html build/ && cpx ./dist/**.css build/dist/ && cpx ./static/**.png build/static/",
"deploy": "yarn build && gh-pages -d build",
"heroku-prebuild": "yarn"
},
"author": "hrfmmymt",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^9.5.1",
"browser-sync": "^2.26.5",
"cpx": "^1.5.0",
"gh-pages": "^2.0.1",
"postcss": "^7.0.16",
"postcss-cli": "^6.1.2",
"postcss-custom-properties": "^8.0.10",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.1.2",
"stylefmt": "^6.0.3",
"stylelint": "^10.0.1"
},
"dependencies": {
"cssnano": "^4.1.10",
"express": "4.17.3"
}
}