-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.64 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
{
"name": "web-task-pro",
"version": "1.0.0",
"description": "web-task-pro is the microservice, where you don't have to write code for repetitive tasks such as Adding SEO, Adding Banners & Deleting them on time, Adding informational pages such as About Us.",
"main": "src/app.ts",
"scripts": {
"start": "node dist/app.js",
"dev": "set NODE_ENV=dev && nodemon --exec ts-node src/app.ts",
"qa": "set NODE_ENV=qa && nodemon --exec ts-node src/app.ts",
"staging": "set NODE_ENV=staging && nodemon --exec ts-node src/app.ts",
"prod": "set NODE_ENV=prod && nodemon --exec ts-node src/app.ts",
"build": "tsc",
"create-env": "node project-setup/create-env.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "RAHUL MORE",
"license": "ISC",
"engines": {
"node": "18.18.0",
"npm": "10.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/more03625/web-task-pro.git"
},
"devDependencies": {
"@types/cors": "^2.8.15",
"@types/esm": "^3.2.1",
"@types/express": "^4.17.20",
"@types/geoip-lite": "^1.4.3",
"@types/node": "^20.8.7",
"@types/semver": "^7.5.4",
"@types/ua-parser-js": "^0.7.38",
"@types/yup": "^0.32.0",
"i": "^0.3.7",
"nodemon": "^3.0.1",
"npm": "^10.2.1",
"typescript": "^5.2.2"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"esm": "^3.2.25",
"express": "^4.18.2",
"express-joi-validation": "^5.0.1",
"geoip-lite": "^1.4.7",
"http": "^0.0.1-security",
"mongoose": "^7.6.3",
"semver": "^7.5.4",
"ua-parser-js": "^1.0.36",
"yup": "^1.3.2"
}
}