-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 977 Bytes
/
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
{
"name": "multi-auth",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node build/index.js",
"dev": "nodemon src/index.ts",
"build": "tsc -p . && xcopy src\\views build\\views /i /y"
},
"author": "jayesh@shethink.in",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.10",
"@types/crypto-js": "^4.0.1",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.1",
"@types/node": "^15.0.2",
"@types/validatorjs": "^3.15.0",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.8",
"validatorjs": "^3.22.1"
}
}