-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 834 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 834 Bytes
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
{
"name": "backend",
"version": "0.0.1",
"description": "A formBuilder which provide Form Intregation without Code",
"main": "src/index.ts",
"repository": "https://github.com/integration-tech/backend",
"author": "Apurv Jha",
"license": "MIT",
"private": false,
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"dev": "nodemon --exec ts-node src/index.ts"
},
"dependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.0",
"body-parser": "^1.20.2",
"crypto-js": "^4.2.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.4",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/crypto-js": "^4.2.1",
"@types/jsonwebtoken": "^9.0.5",
"nodemon": "^3.0.2"
}
}