-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 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
{
"name": "exam_project",
"version": "1.0.0",
"description": "",
"main": "dist/src/main/server.js",
"scripts": {
"dev": "npx nodemon",
"build": "tsc && tsc-alias",
"start": "node dist/src/main/server.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"typeorm": "ts-node ./node_modules/typeorm/cli",
"typeorm:run-migrations": "npm run typeorm migration:run -- -d ./src/infrastructure/config/typeorm.config.ts",
"typeorm:generate-migration": "npm run typeorm -- -d ./src/infrastructure/config/typeorm.config.ts migration:generate ./src/infrastructure/migrations/%npm_config_name%",
"typeorm:create-migration": "npm run typeorm -- migration:create ./src/infrastructure/migrations/%npm_config_name%",
"typeorm:revert-migration": "npm run typeorm -- -d ./src/infrastructure/typeorm.config.ts migration:revert"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^6.10.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"pg": "^8.11.3",
"ts-node-dev": "^2.0.0",
"typeorm": "^0.3.17",
"typescript": "^5.2.2",
"uuid": "^9.0.1",
"validator": "^13.11.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"tscpaths": "^0.0.9"
},
"devDependencies": {
"@babel/cli": "^7.22.15",
"@babel/core": "^7.22.20",
"@babel/plugin-transform-modules-commonjs": "^7.22.15",
"@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.22.15",
"@types/bcryptjs": "^2.4.4",
"@types/compression": "^1.7.3",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/lodash": "^4.14.198",
"@types/node": "^20.6.3",
"@types/uuid": "^9.0.4",
"@types/validator": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2"
}
}