-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "svetdeti-postcards",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node build/index.js",
"test": "jest",
"dev": "nodemon",
"copy-files": "cp -r ./src/postcard.pdf ./src/Rubik ./public ./build",
"build": "rimraf ./build && tsc && npm run copy-files "
},
"author": "",
"license": "ISC",
"dependencies": {
"@pdf-lib/fontkit": "^1.1.1",
"body-parser": "^1.20.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"nodemailer": "^6.9.7",
"nodemailer-smtp-transport": "^2.7.4",
"pdf-lib": "^1.17.1",
"pdf-parse": "^1.1.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/nodemailer": "^6.4.14",
"@types/pdf-parse": "^1.1.4",
"@types/supertest": "^2.0.16",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"rimraf": "^5.0.5",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}