-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 899 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
{
"name": "personal-site",
"version": "1.0.0",
"description": "personal website",
"main": "app.js",
"repository": "https://github.com/SamLee514/personal-site.git",
"author": "Samuel Lee",
"license": "MIT",
"private": false,
"dependencies": {
"countapi-js": "^1.0.2",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"@types/node": "^18.0.0",
"marked": "^4.0.17",
"netlify-cli": "^10.7.1",
"sass": "^1.38.1",
"ts-node": "^10.8.1"
},
"scripts": {
"dev": "netlify dev",
"build": "webpack && sass src/styles/style.scss:public/style.css && cp -r src/index.html src/assets src/content _redirects public && yarn generate && rm public/content/blog/*.md",
"generate": "cd src && node ../scripts/generateContentPaths.mjs && node ../scripts/parseMarkdown.mjs",
"marked": "marked"
}
}