-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.34 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
{
"name": "ts-blockchain",
"version": "1.0.1",
"description": "Minimalistic blockchain written with TypeScript",
"engines": {
"node": ">= 14.13"
},
"main": "src/app/index.ts",
"scripts": {
"start": "yarn build && node ./build/src/app",
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint .",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "Philippe Matray <[email protected]>",
"license": "MIT",
"dependencies": {
"body-parser": "1.19.0",
"crypto-js": "4.0.0",
"elliptic": "6.5.4",
"express": "4.17.3",
"tslib": "2.0.3",
"uuid": "8.3.1",
"ws": "7.4.6"
},
"devDependencies": {
"@types/crypto-js": "4.0.1",
"@types/elliptic": "6.4.12",
"@types/express": "4.17.8",
"@types/node": "14.14.5",
"@types/uuid": "8.3.0",
"@types/ws": "7.2.8",
"@typescript-eslint/eslint-plugin": "4.6.0",
"@typescript-eslint/parser": "4.6.0",
"eslint": "7.12.1",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-prettier": "3.1.4",
"jest": "26.6.1",
"nodemon": "2.0.6",
"prettier": "2.1.2",
"rimraf": "3.0.2",
"ts-jest": "26.4.3",
"ts-node-dev": "1.0.0",
"tsutils": "3.17.1",
"typescript": "4.0.5"
}
}