-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 941 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
37
38
39
40
41
42
{
"name": "qrc-generator",
"author": "Permaficus <[email protected]>",
"version": "1.0.0",
"description": "RESTful API for generating QRCode",
"main": "src/app.ts",
"scripts": {
"dev": "nodemon src/app.ts",
"start": "tsc && tsc-alias && nodemon dist/src/app.js"
},
"keywords": [
"QRCode Generator",
"qrcode api",
"qrcode",
"qrcode generator"
],
"license": "MIT",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/qrcode": "^1.5.5",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.9"
},
"dependencies": {
"chalk": "^4.1.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"helmet": "^7.1.0",
"joi": "^17.12.3",
"qrcode": "^1.5.3",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.5"
},
"nodemonConfig": {
"ignore": [
"**/result/**"
],
"ext": "env, ts, js, json"
}
}