-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
37 lines (37 loc) · 1.23 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
{
"name": "blockchain-ts",
"version": "1.1.0",
"main": "dist/index.js",
"repository": "[email protected]:krystianity/blockchain.git",
"author": "Chris Froehlingsdorf <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"build": "yarn ts:build",
"_start": "DEBUG=blockchain:* node dist/index.js",
"start": "yarn build && yarn _start",
"lint": "tslint -c tslint.json '**/*.ts'",
"ts:build": "rm -rf dist/ && tsc -p tsconfig.json",
"prepublishOnly": "yarn build",
"test": "yarn test:p2p && yarn test:consensus",
"test:p2p": "yarn build && DEBUG=blockchain:silence ./node_modules/.bin/_mocha --recursive --timeout 5000 --exit -R spec test/int",
"test:consensus": "yarn build && DEBUG=blockchain:silence CONSENSUS_TEST=1 ./node_modules/.bin/_mocha --recursive --timeout 5000 --exit -R spec test/int"
},
"dependencies": {
"body-parser": "~1.19.0",
"cors": "~2.8.5",
"crypto-js": "~4.0.0",
"debug": "~4.3.1",
"express": "~4.17.1",
"keypair": "~1.0.3",
"request": "~2.88.2",
"sequelize": "~6.6.2",
"sqlite3": "~5.0.2",
"uuid": "~8.3.2"
},
"devDependencies": {
"@types/node": "~15.6.1",
"mocha": "~8.4.0",
"tslint": "~6.1.3",
"typescript": "~4.3.2"
}
}