-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.68 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.68 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "crowdfunding-nodejs",
"version": "1.0.0",
"description": "Tesis",
"main": "index.js",
"scripts": {
"build": "tsc && tsc-alias",
"start": "NODE_ENV=production node -r ./env.js dist/index.js",
"watch": "nodemon -e ts -w ./src --ignore ./src/seeder -x 'ts-node-dev --transpile-only --files -r tsconfig-paths/register -r ./env.js src/index.ts --inspect'",
"seed": "ts-node -r tsconfig-paths/register -r ./env.js src/seeder/seed.ts --inspect"
},
"author": "",
"license": "ISC",
"dependencies": {
"@koa/cors": "^3.1.0",
"@koa/multer": "^3.0.0",
"aws-sdk": "^2.925.0",
"bcryptjs": "^2.4.3",
"csvtojson": "^2.0.10",
"googleapis": "^77.0.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-jwt": "^4.0.1",
"koa-logger": "^3.2.1",
"koa-router": "^10.0.0",
"multer": "^1.4.2",
"mysql": "^2.18.1",
"nodemailer": "^6.6.0",
"reflect-metadata": "^0.1.13",
"ts-node-dev": "^1.1.8",
"typeorm": "^0.2.32",
"uniqid": "^5.3.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/jest": "^26.0.22",
"@types/jsonwebtoken": "^8.5.1",
"@types/koa": "^2.13.1",
"@types/koa__cors": "^3.0.2",
"@types/koa__multer": "^2.0.2",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-jwt": "^3.3.0",
"@types/koa-logger": "^3.1.1",
"@types/koa-router": "^7.4.1",
"@types/node": "^14.14.37",
"@types/nodemailer": "^6.4.1",
"@types/uniqid": "^5.3.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"tsc-alias": "^1.2.9",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.3"
}
}