-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.07 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
{
"name": "express-sequelize-autocrud",
"version": "1.2.0",
"main": "dist/src/index.js",
"type": "module",
"files": [
"dist/src"
],
"author": {
"name": "Dor Alteresku",
"url": "https://github.com/doralteres"
},
"repository": {
"type": "git",
"url": "https://github.com/doralteres/express-sequelize-autocrud.git"
},
"homepage": "https://doralteres.github.io/express-sequelize-autocrud/",
"bugs": {
"url": "https://github.com/doralteres/express-sequelize-autocrud/issues"
},
"description": "Express Sequelize AutoCRUD: Simplify API development with automatic CRUD routes for Sequelize models in Express.js.",
"license": "MIT",
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.21",
"@types/node": "^20.11.9",
"@types/supertest": "^6.0.2",
"@vitest/coverage-v8": "^1.0.4",
"@vitest/ui": "^1.0.4",
"body-parser": "^1.20.2",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint-plugin-prettier": "^5.0.1",
"gts": "^5.2.0",
"prettier": "^3.1.1",
"sqlite3": "^5.1.7",
"supertest": "^6.3.3",
"ts-node": "^10.9.2",
"typedoc": "^0.25.7",
"typescript": "~5.3.3",
"vite": "^5.0.10",
"vitest": "^1.0.4"
},
"scripts": {
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "pnpm run compile",
"pretest": "pnpm run compile",
"posttest": "pnpm run lint",
"commit": "cz",
"test": "vitest",
"docs": "typedoc src/index.ts"
},
"dependencies": {
"express": "^4.18.2",
"sequelize": "^6.35.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"express",
"sequelize",
"crud",
"rest-api",
"api-development",
"typescript",
"orm",
"middleware",
"automatic-routes"
],
"packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
}