-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.34 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.34 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
{
"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 <philippe@atypical.consulting>",
"license": "MIT",
"dependencies": {
"body-parser": "2.2.2",
"crypto-js": "4.2.0",
"elliptic": "6.6.1",
"express": "5.2.1",
"tslib": "2.8.1",
"uuid": "13.0.0",
"ws": "8.19.0"
},
"devDependencies": {
"@types/crypto-js": "4.2.2",
"@types/elliptic": "6.4.18",
"@types/express": "5.0.6",
"@types/node": "24.12.0",
"@types/uuid": "11.0.0",
"@types/ws": "8.18.1",
"@typescript-eslint/eslint-plugin": "8.57.0",
"@typescript-eslint/parser": "8.57.0",
"eslint": "10.0.3",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"jest": "30.3.0",
"nodemon": "3.1.14",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"ts-jest": "29.4.6",
"ts-node-dev": "2.0.0",
"tsutils": "3.21.0",
"typescript": "5.9.3"
}
}