-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.4 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": "velvet",
"version": "1.0.0",
"description": "REST API Starter Kit/Boilerplate powered by Node.js, Express.js, and TypeORM",
"scripts": {
"build": "rimraf dist && tsc",
"start:dev": "ts-node-dev src/app.ts",
"start:prod": "npm run build && node dist/src/app.js",
"migration:generate": "ts-node node_modules/.bin/typeorm migration:generate -d src/configs/dataSource.ts src/migrations/$npm_config_name",
"migration:run": "ts-node node_modules/.bin/typeorm migration:run -d src/configs/dataSource",
"migration:revert": "ts-node node_modules/.bin/typeorm migration:revert -d src/configs/dataSource",
"lint": "eslint \"./**/*.{js,jsx,ts,tsx}\" --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint \"./**/*.{js,jsx,ts,tsx}\" --fix --report-unused-disable-directives --max-warnings 0",
"lint:fix:file": "eslint --fix --quiet",
"prettier": "prettier --check \"./**/*.{js,jsx,ts,tsx,css,md,json}\"",
"prettier:fix": "prettier --write \"./**/*.{js,jsx,ts,tsx,css,md,json}\"",
"generate": "ts-node cli.ts generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arifszn/velvet.git"
},
"author": "arifszn",
"license": "MIT",
"bugs": {
"url": "https://github.com/arifszn/velvet/issues"
},
"homepage": "https://github.com/arifszn/velvet#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"class-transformer": "^0.5.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.11.0",
"node-cron": "^3.0.3",
"reflect-metadata": "^0.2.2",
"swagger-ui-express": "^5.0.1",
"typeorm": "^0.3.20",
"winston": "^3.13.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"fs-extra": "^11.2.0",
"gluegun": "^5.1.6",
"prettier": "^3.3.2",
"rimraf": "^5.0.8",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.4"
},
"keywords": [
"nodejs",
"express",
"typeorm",
"rest-api",
"starter-kit",
"boilerplate",
"typescript"
]
}