-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.31 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.31 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "scrypta-idanodejs",
"version": "3.2.1",
"description": "NodeJS implementation of Scrypta IdANode Technology",
"main": "index.js",
"scripts": {
"dev": "tsc --watch & nodemon --delay 3 dist",
"dev:testnet": "tsc --watch & nodemon --delay 3 dist --testnet",
"build": "rm -rf dist && tsc",
"pub": "node scripts/publish_idanode.js",
"mongodump": "node scripts/create_bootstrap.js",
"update": "pm2 stop npm && git checkout . && git pull && npm run build && npm install && pm2 start npm",
"test": "tsc && mocha dist/**/*.spec.js",
"lint": "eslint src --ext ts",
"tsc": "tsc",
"start": "tsc & node dist/index.js",
"start:testnet": "tsc & node dist/index.js --testnet"
},
"keywords": [],
"author": "Scrypta Foundation",
"license": "MIT",
"dependencies": {
"@scrypta/core": "^3.0.5",
"@scrypta/vm": "^1.4.3",
"@types/mathjs": "^6.0.11",
"@types/node": "14.14.22",
"archiver": "^5.2.0",
"aws-sdk": "^2.831.0",
"axios": "^0.21.1",
"better-console": "^1.0.1",
"body-parser": "^1.19.0",
"child_process": "^1.0.2",
"coinkey": "^3.0.0",
"coinstring": "^2.3.0",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"dotenv": "^8.2.0",
"download-file": "^0.1.5",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-rate-limit": "^5.2.3",
"file-type": "^16.2.0",
"folder-hash": "^4.0.0",
"formidable": "^1.2.2",
"helmet": "^4.4.1",
"ipfs": "^0.53.2",
"lcrypt": "^1.0.2",
"lzutf8": "^0.5.8",
"mathjs": "^9.0.0",
"minimist": "^1.2.5",
"mongodb": "^3.6.3",
"multiaddr": "^8.1.2",
"node-port-check": "^2.0.1",
"node-typescript": "^0.1.3",
"nodemon": "^2.0.7",
"opn": "^6.0.0",
"public-ip": "^4.0.3",
"request": "^2.88.2",
"secp256k1": "^4.0.2",
"socket.io": "^3.1.0",
"socket.io-client": "^3.1.0",
"underscore": "^1.12.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/mocha": "8.2.0",
"@types/node": "14.14.22",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-promise": "4.2.1",
"mocha": "^8.2.1",
"pkg": "^4.4.9",
"pug": "^3.0.0",
"supertest": "6.1.2",
"tsc": "1.20150623.0",
"typescript": "4.1.3",
"typescript-eslint-parser": "22.0.0"
}
}