-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.31 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.31 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
64
65
66
67
68
69
70
71
72
73
{
"name": "cig-service-template",
"version": "0.1.0",
"description": "Project template of node service",
"main": "src/index.js",
"scripts": {
"build": "babel src --extensions \".ts\" --out-dir build --copy-files --no-copy-ignored",
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --ignore-watch node_modules --no-notify src/index.ts",
"start": "node build/index.js",
"typeorm": "typeorm-ts-node-commonjs -d ./src/configs/database.ts",
"db:migrate": "npm run typeorm migration:run",
"db:schema:sync": "npm run typeorm schema:sync",
"db:schema:drop": "npm run typeorm schema:drop",
"lint": "eslint .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edumoreira1506/cig-service-template.git"
},
"author": "Eduardo Moreira",
"license": "ISC",
"bugs": {
"url": "https://github.com/edumoreira1506/cig-service-template/issues"
},
"homepage": "https://github.com/edumoreira1506/cig-service-template#readme",
"dependencies": {
"@cig-platform/core": "^0.11.0",
"@cig-platform/docs": "^0.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"i18n": "^0.15.1",
"joi": "^17.7.0",
"pg": "^8.8.0",
"swagger-ui-express": "^4.6.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.1",
"typeorm": "^0.3.11",
"typescript": "^4.9.4"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/node": "^7.20.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@faker-js/faker": "^7.6.0",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.14",
"@types/i18n": "^0.13.6",
"@types/jest": "^29.2.4",
"@types/joi": "^17.2.3",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"babel-jest": "^29.3.1",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^8.29.0",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"ts-node-dev": "^2.0.0"
},
"engines": {
"node": "16.14.0"
}
}