-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 954 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
36
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/index.ts",
"dev": "nodemon --exec npx ts-node src/index.ts",
"build": "tsc --build && npm run copy-ejs",
"clean": "tsc --build --clean",
"copy-ejs": "copyfiles -u 1 ./src/resumeTemplates/*.ejs ./build/"
},
"keywords": [],
"author": "Gourab Paul",
"license": "ISC",
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/cors": "^2.8.12",
"@types/ejs": "^3.1.0",
"@types/express": "^4.17.13",
"@types/html-pdf": "^3.0.0",
"@types/uuid": "^8.3.4",
"copyfiles": "^2.4.1",
"nodemon": "^2.0.14",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"cors": "^2.8.5",
"ejs": "^3.1.6",
"express": "^4.18.2",
"firebase-admin": "^11.0.1",
"puppeteer": "^13.5.0"
}
}