-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.36 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
{
"name": "challenges",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "babel src --extensions \".js,.ts\" --out-dir dist --copy-files ",
"typeorm:cli": "ts-node-dev -r tsconfig-paths/register ./node_modules/typeorm/cli -f ./ormconfig.json",
"db:migrate": "yarn typeorm:cli migration:run ",
"migration:revert": "yarn typeorm:cli migration:revert",
"migration:create": "yarn typeorm:cli migration:create",
"db:sync": "yarn typeorm:cli schema:sync",
"db:drop": "yarn typeorm:cli schema:drop",
"start": "yarn db:migrate && ts-node src/index.ts",
"dev:server": "NODE_ENV=development ts-node-dev -r tsconfig-paths/register --transpile-only --ignore-watch node_modules src/index.ts",
"test": "jest"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"deep-email-validator": "^0.1.18",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.6.0",
"reflect-metadata": "^0.1.13",
"tsconfig-paths": "^3.9.0",
"typeorm": "^0.2.32"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.11",
"@types/faker": "^5.5.3",
"@types/jest": "^26.0.22",
"@types/jsonwebtoken": "^8.5.1",
"@types/node": "^14.14.41",
"faker": "^5.5.3",
"jest": "^26.6.3",
"ts-jest": "^26.5.5",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.4"
}
}