-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.4 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
{
"name": "syncwallet",
"version": "1.0.0",
"description": "Sync All Your Crypto Wallets",
"engines": {
"node": "14.x"
},
"main": "index.js",
"scripts": {
"test": "jest --config=./jest.config.js",
"start": "nodemon index.js"
},
"keywords": [
"crypto"
],
"author": "",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@sentry/node": "^6.16.1",
"@sentry/tracing": "^6.16.1",
"axios": "^0.24.0",
"babel-jest": "^27.4.5",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.1",
"connect-mongo": "^4.6.0",
"cookie-parser": "^1.4.6",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-async-handler": "^1.2.0",
"express-session": "^1.17.2",
"faker": "^5.5.3",
"hat": "0.0.3",
"helmet": "^4.6.0",
"html": "^1.0.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.2.2",
"mongoose": "^6.1.2",
"morgan": "^1.10.0",
"nodemailer": "^6.7.2",
"nodemon": "^2.0.15"
},
"devDependencies": {
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"jest": "^27.4.5",
"superagent": "^6.1.0",
"supertest": "^6.1.6"
}
}