-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.88 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
{
"name": "nodejs-training",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "TS_NODE_BASEURL=./dist node -r tsconfig-paths/register dist/index.js",
"dev": "nodemon",
"local-db": "docker-compose -f docker-compose.db.yml up",
"build": "tsc",
"test": "jest",
"typeorm": "typeorm-ts-node-commonjs"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "node -r tsconfig-paths/register -r ts-node/register ./src/index.ts",
"ext": "ts, js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frgarciames/nodejs-training.git"
},
"author": "frgarciames",
"license": "ISC",
"bugs": {
"url": "https://github.com/frgarciames/nodejs-training/issues"
},
"homepage": "https://github.com/frgarciames/nodejs-training#readme",
"dependencies": {
"awilix": "^7.0.3",
"awilix-express": "^7.0.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"pg": "^8.4.0",
"reflect-metadata": "^0.1.13",
"tsconfig-paths": "^4.0.0",
"typeorm": "0.3.6"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.5.2",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.16.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.0",
"node-mocks-http": "^1.11.0",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"ts-jest": "^28.0.4",
"ts-node": "10.7.0",
"typescript": "4.5.2"
}
}