-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.48 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "ts-node-api-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/src/app.js",
"dev": "nodemon --watch 'src/' --exec 'ts-node src/app.ts' -e ts",
"dev:build": "rm -Rf dist && tsc && node dist/app.js",
"build": "tsc",
"postinstall": "npm run build",
"deploy": "git push -f heroku main",
"config:env": "cp .env.example .env",
"typeorm:migration:run": "ts-node node_modules/.bin/typeorm migration:run -d ./src/config/typeorm.ts",
"typeorm:schema:sync": "ts-node node_modules/.bin/typeorm schema:sync -d ./src/config/typeorm.ts",
"typeorm:migration:revert": "ts-node node_modules/.bin/typeorm migration:revert -d ./src/config/typeorm.ts",
"typeorm:migration:create": "ts-node node_modules/.bin/typeorm migration:create",
"prettier": "npx prettier --write .",
"test": "npx jest --detectOpenHandles",
"test:watch": "npx jest --watch --detectOpenHandles --clearCache",
"test:coverage": "npx jest --coverage",
"test:coverage:text": "npx jest --coverage --coverageReporters='text-summary'",
"prepare": "husky install"
},
"engines": {
"node": "16.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vinicinbgs/ts-node=api-boilerplate.git"
},
"keywords": [],
"author": "https://github.com/vinicinbgs",
"license": "ISC",
"bugs": {
"url": "https://github.com/vinicinbgs/ts-node=api-boilerplate/issues"
},
"homepage": "https://github.com/vinicinbgs/ts-node=api-boilerplate#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"class-transformer": "^0.5.1",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"firebase": "^9.6.11",
"firebase-admin": "^10.1.0",
"jsonwebtoken": "^8.5.1",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"router": "^1.3.6",
"swagger-ui-express": "^4.3.0",
"typeorm": "^0.3.6",
"typescript": "^4.6.3",
"uuid": "^8.3.2",
"validator": "^13.7.0"
},
"devDependencies": {
"@faker-js/faker": "^6.2.0",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.29",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.4",
"@types/validator": "^13.7.2",
"husky": "^7.0.4",
"jest": "^27.0.2",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"tslint": "^6.1.3"
}
}