-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.86 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.86 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
58
59
60
61
62
63
{
"name": "agnuscrm-nodejs-api",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/Aguns/agnuscrm-nodejs-api.git",
"author": "Guimarães Mahota <guimaraesmahota@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "tsnd --transpile-only --ignore-watch node_modules src/server.ts",
"start": "node dist/server.js",
"deploy": "git add . && git commit -m 'Heroku' && git push heroku main",
"build": "tsc",
"clean": "rm -rf ./dist",
"postinstall": "tsc",
"typeorm": "tsnd ./node_modules/typeorm/cli.js",
"migration-generate": "typeorm migration:generate -n"
},
"devDependencies": {
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@types/app-root-path": "^1.2.4",
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.9",
"@types/jest": "^26.0.19",
"@types/jsonwebtoken": "^8.5.0",
"@types/pdf-parse": "^1.1.0",
"@types/ramda": "^0.27.34",
"@types/supertest": "^2.0.10",
"@types/swagger-jsdoc": "^3.0.2",
"@types/swagger-ui-express": "^4.1.2",
"@types/uuid": "^8.3.0",
"@types/yup": "^0.29.10",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"typescript": "4.1.3"
},
"dependencies": {
"app-root-path": "^3.0.0",
"aws-sdk": "^2.841.0",
"axios": "^0.21.0",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"fs": "^0.0.1-security",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mysql": "^2.18.1",
"pdf-lib": "^1.16.0",
"pdf-parse": "^1.1.1",
"ramda": "^0.27.1",
"supertest": "^6.0.1",
"swagger-jsdoc": "^6.0.1",
"swagger-ui-express": "^4.1.6",
"ts-node-dev": "^1.0.0",
"ts-simple-nameof": "^1.3.0",
"typeorm": "^0.2.29",
"uuid": "^8.3.2",
"yup": "^0.32.6"
}
}