-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.52 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
76
77
78
79
80
81
82
83
84
{
"name": "my-api-express",
"version": "1.0.0",
"description": "API example using the Express framework",
"repository": {
"type": "git",
"url": "https://github.com/marcusviniciusfa/my-api-express"
},
"author": {
"name": "Marcus Vinicius",
"email": "marcusvinicius.dev@gmail.com"
},
"type": "commonjs",
"main": "./dist/src/shared/http/server.js",
"engines": {
"node": ">=14.0.0"
},
"_moduleAliases": {
"@": "dist/src"
},
"scripts": {
"build": "rimraf dist && npx tsc && ./scripts/cp_translation_resources_to_dist.sh",
"dev": "nodemon",
"start": "node -r module-alias/register -r dotenv/config ./dist/src/shared/http/server.js",
"typeorm": "ts-node-dev ./node_modules/typeorm/cli.js -- -d src/shared/typeorm/index.ts",
"seeding": "ts-node-dev ./node_modules/typeorm-extension/dist/cli/index.js seed -- -d src/shared/typeorm/index.ts",
"lint": "eslint --fix .",
"test": "echo \"Error: no test specified\"",
"prepare": "husky install",
"commit": "git-cz"
},
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.4.0",
"@commitlint/config-conventional": "^17.4.0",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^9.0.1",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.9",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"commitizen": "^4.2.6",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.4"
},
"dependencies": {
"@types/cors": "^2.8.12",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-validator": "^6.15.0",
"i18next": "^22.4.10",
"i18next-fs-backend": "^2.1.1",
"i18next-http-middleware": "^3.2.2",
"jsonwebtoken": "^9.0.0",
"module-alias": "^2.2.2",
"multer": "^1.4.5-lts.1",
"redis-om": "^0.3.6",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.1.2",
"swagger-ui-express": "^4.6.0",
"tsyringe": "^4.7.0",
"typeorm": "^0.3.10",
"typeorm-extension": "^2.4.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}