-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·52 lines (52 loc) · 1.73 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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "Cunganetwork",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "tsnd --transpile-only --respawn --ignore-watch node_modules src/shared/infra/http/server/server.ts",
"typeorm": "tsnd ./node_modules/typeorm/cli.js",
"test": "NODE_ENV=test jest",
"seed:admin": "tsnd src/shared/infra/typeorm/seeds/admin.ts"
},
"dependencies": {
"axios": "^0.24.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-error-handler": "^1.1.0",
"jest": "^27.2.2",
"jsonwebtoken": "^8.5.1",
"pg": "^8.7.1",
"postgres": "^1.0.2",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.6.0",
"typeorm": "^0.2.37",
"typescript": "^4.3.5",
"uuidv4": "^6.2.11"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/multer": "^1.4.7",
"@types/nodemailer": "^6.4.4",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"prettier": "^2.3.2",
"supertest": "^6.1.6",
"ts-jest": "^27.0.7",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.10.1",
"yest": "^0.0.1"
}
}