-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.4 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.4 KB
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
{
"name": "smartvault-dashboard-server",
"main": "bin/www",
"scripts": {
"start": "NODE_PATH=. ./bin/www",
"dev": "NODE_PATH=. nodemon --watch src --debug --inspect=0.0.0.0:9230 ./bin/www",
"deploy-standalone": "truffle deploy --reset --network=standalone",
"deploy-sirius": "truffle deploy --reset --network=sirius",
"test": "truffle test --reset --network=ganache",
"compile": "rm -rf ./build/contracts/*; truffle compile --all --reset",
"postinstall": "rm -f node_modules/src; ln -nsf ../src node_modules/src"
},
"dependencies": {
"bcrypt": "^3.0.5",
"bignumber.js": "^8.1.1",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-form-data": "^2.0.8",
"express-session": "^1.16.1",
"fs": "0.0.1-security",
"hbs": "^4.0.4",
"jwt-simple": "^0.5.6",
"lightstreams-js-sdk": "git+https://git@github.com/lightstreams-network/lightstreams-js-sdk.git#v0.8.0",
"lodash": "^4.17.11",
"luxon": "^1.28.1",
"memory-streams": "^0.1.3",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"sequelize": "^6.0.0",
"sqlite3": "^4.0.6",
"tempfile": "^3.0.0",
"uuid": "^3.3.2",
"web3": "1.2.1"
},
"devDependencies": {
"nodemon": "^1.18.11",
"truffle": "^5.0.12",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1"
}
}