-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 952 Bytes
/
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
{
"name": "personal-site",
"version": "1.0.0",
"description": "Personal site for Kyle Coberly",
"scripts": {
"test": "jest --notify --watchAll",
"build": "npm run build:clean && npm run build:style && npm run build:templates && npm run build:copy",
"build:clean": "rm -rf dist/*",
"build:style": "sass styles/app.scss dist/app.css",
"build:templates": "node scripts/index.js",
"build:copy": "cp -r assets dist",
"deploy": "npm run build && npx firebase-tools deploy",
"dev": "npm-watch"
},
"author": "Kyle Coberly",
"license": "ISC",
"devDependencies": {
"dayjs": "^1.7.8",
"handlebars": "^4.7.6",
"handlebars-layouts": "^3.1.4",
"jest": "^29.7.0",
"lodash": "^4.17.15",
"npm-watch": "^0.11.0",
"showdown": "^1.9.1"
},
"watch": {
"build": "{styles,scripts,data,templates}/**.*"
},
"jest": {
"verbose": true
},
"dependencies": {
"sass": "^1.56.1"
}
}