-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·73 lines (73 loc) · 2.78 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "betsydupuisresume",
"version": "1.0.0",
"description": "A resume website for Betsy Dupuis.",
"homepage": "http://www.betsydupuis.com",
"keywords": "portfolio website betsy dupuis",
"bugs": "https://github.com/betsydupuis/plasma.css/issues?q=is%3Aopen+is%3Aissue+label%3Abug",
"repository": {
"type": "git",
"url": "https://github.com/betsydupuis/flexbox-grid.git"
},
"config": {
"server": {
"port": 1988,
"directory": "dist"
}
},
"main": "index.js",
"scripts": {
"mkdir:dist": "mkdir -p dist/assets/{css,templates,fonts,images}",
"clean:dist": "rm -rf dist && npm run mkdir:dist",
"test": "echo \"Error: no test specified\" && exit 1",
"html:portfolio": "cpx \"src/portfolio/**/*.html\" dist --watch",
"images:portfolio": "cp -rf ./src/portfolio/images/ ./dist/assets/images",
"images": "npm-run-all images:portfolio",
"html": "npm-run-all html:portfolio",
"beautify:html": "glob-run js-beautify --html --replace './src/**/*.html'",
"cname": "echo 'www.betsydupuis.com' >> dist/CNAME",
"font:font-awesome": "cp -R ./node_modules/font-awesome/fonts/*.* dist/assets/fonts",
"font": "npm-run-all font:font-awesome",
"scss:portfolio": "node-sass --source-map=true ./src/portfolio/index.scss ./dist/assets/css/index.css",
"postscss:portfolio": "node-sass --watch --source-map=true ./src/portfolio/index.scss ./dist/assets/css/index.css",
"scss": "npm-run-all scss:portfolio",
"postscss": "run-p postscss:portfolio",
"css": "npm-run-all scss",
"beautify:css": "js-beautify --css --replace ./dist/css/index.css",
"postcss": "postcss --use autoprefixer --replace ./dist/assets/css/*.css",
"build:portfolio": "run-p clean:dist images font css html ",
"build:deploy": "npm-run-all build:portfolio",
"server": "http-server -p $npm_package_config_server_port $npm_package_config_server_directory",
"app:dev": "run-p build:portfolio server",
"start": "npm run --quiet app:dev",
"predeploy": "npm install --force",
"deploy": "git subtree push --prefix dist origin gh-pages"
},
"author": "Betsy Dupuis",
"license": "none",
"devDependencies": {
"autoprefixer": "^6.7.7",
"bootstrap-sass": "^3.3.7",
"chalk-cli": "^4.0.0",
"cpx": "^1.5.0",
"cpy-cli": "^1.0.1",
"cssnano": "^3.10.0",
"font-awesome": "^4.7.0",
"glob": "^7.1.2",
"glob-run": "^0.1.6",
"http-server": "^0.10.0",
"js-beautify": "^1.7.5",
"mkdirp": "^0.5.1",
"node-sass": "^4.9.0",
"normalize.css": "^3.0.3",
"npm-run-all": "^4.1.3",
"plasma.css": "^1.3.10",
"postcss": "^6.0.23",
"postcss-cli": "^4.1.1",
"postcss-discard-comments": "^2.0.4",
"postcss-import": "^10.0.0",
"rimraf": "^2.6.1",
"watch": "^1.0.2"
},
"dependencies": {}
}