-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 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
{
"name": "typecoin",
"version": "1.0.0",
"description": "",
"scripts": {
"setup": "npm install && npm install --prefix src/interface",
"build": "tsc",
"interface:": "tsc && npm start --prefix src/interface",
"blockchain": "tsc && node built/main.js",
"all": "tsc && npm-run-all --parallel blockchain interface",
"test": "mocha -r ts-node/register tests/**/*.test.ts"
},
"author": "Kurtis Streutker",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/crypto-js": "^3.1.43",
"@types/elliptic": "^6.4.5",
"@types/mocha": "^5.2.6",
"@types/node": "^11.11.4",
"@types/node-fetch": "^2.1.7",
"@types/ws": "^6.0.1",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"mocha": "^6.0.2",
"npm-run-all": "^4.1.5",
"ts-node": "^8.0.3",
"typescript": "^3.3.4000"
},
"dependencies": {
"bignumber.js": "^8.1.1",
"buffer-reverse": "^1.0.1",
"cors": "^2.8.5",
"crypto-js": "^3.1.9-1",
"elliptic": "^6.4.1",
"express": "^4.16.4",
"node-fetch": "^2.3.0",
"ws": "^6.2.0"
}
}