-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.37 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
{
"name": "stxserver",
"version": "1.0.0",
"description": "Backend for stx stacking app",
"main": "index.js",
"type": "module",
"scripts": {
"test": "jest --watchAll",
"dev": "nodemon index.js",
"stack": "node stacking/index.js",
"start": "node index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@stacks/blockchain-api-client": "^0.38.1",
"@stacks/network": "^1.0.2",
"@stacks/stacking": "^1.1.0",
"babel-jest": "^26.6.3",
"bcrypt": "^5.0.0",
"bn.js": "^4.11.6",
"buffer": "^6.0.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"csv-express": "^1.2.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-session": "^1.17.1",
"http-errors": "^1.8.0",
"joi": "^17.3.0",
"json2csv": "^5.0.6",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.9",
"morgan": "^1.10.0",
"nodemailer": "^6.4.17",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pdfkit": "^0.11.0",
"stxcalculator": "^1.0.10",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"eslint": "^7.17.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"supertest": "^6.1.3"
},
"volta": {
"node": "14.15.4",
"npm": "6.14.11"
}
}