-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.6 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
55
56
57
58
59
60
61
62
{
"name": "banking",
"version": "1.0.0",
"description": "Ứng dụng internet backing dành cho đồ án cuối kì môn phát triển ứng dụng web nâng cao",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "babel-node index",
"dev": "nodemon --exec babel-node index"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ntquang98/WEBNC_Internet_Banking.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ntquang98/WEBNC_Internet_Banking/issues"
},
"homepage": "https://github.com/ntquang98/WEBNC_Internet_Banking#readme",
"dependencies": {
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"dotenv": "^8.2.0",
"eslint": "^7.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-validator": "^6.5.0",
"http-errors": "^1.7.3",
"jsonwebtoken": "^8.5.1",
"md5": "^2.3.0",
"moment": "^2.25.3",
"moment-timezone": "^0.5.31",
"mongoose": "^5.9.14",
"morgan": "^1.10.0",
"node-rsa": "^1.1.1",
"nodemailer": "^6.4.8",
"openpgp": "^4.10.4",
"otplib": "^12.0.1",
"qs": "^6.9.4",
"rand-token": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/node": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"jest": "^26.0.1",
"supertest": "^4.0.2",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^8.0.1"
},
"jest": {
"testEnvironment": "node"
}
}