-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.51 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.51 KB
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
{
"name": "@point-hub/papi-starter",
"version": "0.0.1",
"module": "src/index.ts",
"type": "module",
"scripts": {
"dev": "cross-env NODE_ENV=development bun run --watch src/index.ts",
"start": "cross-env NODE_ENV=production bun run src/index.ts",
"types": "tsc -p tsconfig.json",
"lint": "eslint",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.34.0",
"@faker-js/faker": "^10.0.0",
"@types/bun": "^1.2.21",
"@types/compression": "^1.8.1",
"@types/cookie-parser": "^1.4.9",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.0.0",
"@types/supertest": "^6.0.3",
"@types/validatorjs": "^3.15.5",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"eslint": "9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"supertest": "^7.1.4"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@point-hub/express-utils": "0.2.10",
"@point-hub/papi": "^0.5.16",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"cross-env": "^10.0.0",
"date-fns": "^4.1.0",
"express": "^5.1.0",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"validatorjs": "^3.22.1"
}
}