-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.14 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
{
"version": "2.0.0",
"name": "project_portfolio",
"description": "Portfolio of Jacob Grisham's web development projects and blog.",
"keywords": [
"Jacob",
"Grisham",
"software",
"engineer",
"portfolio"
],
"author": "Jacob Grisham",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/JacobGrisham/Professional-Portfolio.git"
},
"private": true,
"homepage": "https://jacobgrisham.com",
"scripts": {
"watch:sass": "node-sass sass/main.scss css/style.css -w",
"compile:sass": "node-sass sass/main.scss css/style.compile.css",
"prefix:css": "postcss --use autoprefixer -b 'last 10 versions' css/style.compile.css -o css/style.prefix.css",
"compress:css": "node-sass css/style.prefix.css css/style.css --output-style compressed",
"dev": "npm-run-all --parallel watch:sass",
"build": "npm-run-all compile:sass prefix:css compress:css"
},
"devDependencies": {
"autoprefixer": "^9.8.8",
"node-sass": "^8.0.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.2",
"trim-newlines": "^4.0.2"
},
"dependencies": {
"lax.js": "^2.0.3"
}
}