-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 951 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 951 Bytes
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
{
"name": "simpleblockchain",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsc && cd ./dist && node ./index.js",
"dev": "tsc && cd ./dist && nodemon -L ./index.js",
"build": "tsc",
"prepare": "yarn run build",
"prettier": "cd ./src && prettier --use-tabs --tab-width 4 --write ."
},
"pre-commit": [
"prettier"
],
"author": "Daniel Romeo Mamphekgo",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.13",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"elliptic": "^6.5.4",
"express": "^4.17.1",
"jackscript-js": "^1.0.1-Alpha",
"level": "^7.0.1",
"moment": "^2.29.1",
"nodemon": "^2.0.20",
"pre-commit": "^1.2.2",
"prettier": "^2.4.1",
"ts-node": "latest",
"typescript": "latest"
},
"devDependencies": {
"@types/node": "^22.10.5",
"axios": "^0.24.0"
}
}