-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 917 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
{
"name": "continuity",
"version": "1.0.0",
"description": "Create a resume using Markdown and CSS",
"main": "dist/server.js",
"type": "module",
"scripts": {
"build": "npx tsc --build",
"resume": "npx tsc --build --clean && npx tsc --build && node dist/util/create-resume.js",
"server": "nodemon util/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexwkleung/Continuity.git"
},
"author": "alexwkleung",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexwkleung/Continuity/issues"
},
"homepage": "https://github.com/alexwkleung/Continuity#readme",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^18.15.11",
"express": "^4.18.2",
"nodemon": "^2.0.22",
"typescript": "^5.0.4"
},
"dependencies": {
"eva-st-util": "github:alexwkleung/Eva-ST-Util",
"puppeteer": "^19.9.1"
}
}