-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.59 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.59 KB
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
43
44
{
"name": "reports",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf dist",
"build": "tsc",
"copy:modules": "cp -R node_modules dist/node_modules",
"copy:config": "cp vcr.yml dist/vcr.yml",
"copy:package": "cp package.json dist/",
"copy:public": "cp -r src/public dist/public",
"debug:vcr": "npm run clean && npm run build && npm run copy:modules && npm run copy:config && npm run copy:package && npm run copy:public && cd dist && npm run debug",
"deploy:vcr": "npm run clean && npm run build && npm run copy:modules && npm run copy:config && npm run copy:package && npm run copy:public && cd dist && npm run deploy",
"start": "node dist/index.js",
"dev": "npm run build && npm start",
"debug": "/Users/warodriguez/.vcr/bin/vcr debug",
"deploy": "/Users/warodriguez/.vcr/bin/vcr deploy"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"adm-zip": "^0.5.16",
"axios": "^1.8.4",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"csv-parser": "^3.2.0",
"express": "^5.1.0",
"fs": "^0.0.1-security",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"multer": "^1.4.5-lts.2",
"nodemailer": "^6.10.0"
},
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"@types/express": "^5.0.1",
"@types/jsonwebtoken": "^9.0.9",
"@types/multer": "^1.4.12",
"@types/nodemailer": "^6.4.17",
"typescript": "^5.x.x"
}
}