-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.58 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
{
"name": "exts",
"version": "1.0.0",
"description": "exts-custom-express-modified-backend-framework",
"main": "src/index.ts",
"repository": "https://github.com/mahabubx7/exts.git",
"author": "Mahabub Alam <mahabubx7@gmail.com>",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=production TS_NODE_BASEURL=./dist node -r tsconfig-paths/register dist/src/index.js",
"dev": "nodemon",
"dev:node": "ts-node -r tsconfig-paths/register src/index.ts",
"build": "rimraf dist && tsc --project tsconfig.prod.json",
"build:clean": "rimraf dist",
"test": "cross-env NODE_ENV=test jest",
"test:watch": "cross-env NODE_ENV=test jest --watch",
"format": "prettier --write \"**/*.+(js|ts|json|md)\"",
"lint": "eslint . --ext ts,js",
"lint:fix": "eslint . --ext ts,js --fix"
},
"dependencies": {
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"tsconfig-paths": "^4.2.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/node": "^20.2.5",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"rimraff": "^0.0.1-security",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18.16.x"
}
}