-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.85 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
{
"name": "personalwebapp",
"version": "0.0.1",
"description": "Josh Olson's personal website",
"dependencies": {
"materialize-css": "^0.97.6",
"jquery": "^3.0.0"
},
"devDependencies": {
"concurrently": "^1.0.0",
"typescript": "^1.8",
"node-sass": "^3.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OlsonDev/PersonalWebApp.git"
},
"author": "Josh Olson",
"license": "MIT",
"bugs": {
"url": "https://github.com/OlsonDev/PersonalWebApp/issues"
},
"homepage": "https://www.josholson.name",
"scripts": {
"build": "npm run clear-wwwroot && npm run copy && npm run sass",
"start": "dnx web",
"clear-wwwroot": "rd /s /q wwwroot && md wwwroot",
"copy": "concurrently \"npm run copy-images\" \"npm run copy-work-history\" \"npm run copy-highlight\" \"npm run copy-svg\" \"npm run copy-webconfig\" \"npm run copy-fonts\"",
"copy-images": "xcopy \"client/images\" \"wwwroot/images\" /y /q /i /s",
"copy-work-history": "xcopy \"client/work-history\" \"wwwroot/work-history\" /y /q /i /s",
"copy-highlight": "xcopy \"client/lib/highlight\" \"wwwroot/highlight\" /y /q /i /s",
"copy-svg": "xcopy \"client/svg\" \"wwwroot/svg\" /y /q /i /s",
"copy-webconfig": "xcopy \"client\\web.config\" \"wwwroot\\*\" /y /q",
"copy-fonts": "xcopy \"node_modules/materialize-css/fonts/roboto\" \"wwwroot/fonts/roboto\" /y /q /i /s",
"sass": "node-sass --indent-type tab --indent-width 1 --linefeed crlf --output-style expanded --precision 10 Client/sass/styles.scss -out-file wwwroot/css/styles.css",
"sass-watch": "node-sass -w --indent-type tab --indent-width 1 --linefeed crlf --output-style expanded --precision 10 Client/sass/styles.scss -out-file wwwroot/css/styles.css",
"tsc:w": "tsc -w",
"tsc-pretty": "tsc --pretty",
"typings": "cd client/ts && typings install",
"watch": "concurrently \"npm run sass-watch\" \"npm run tsc:w"
}
}