-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1013 Bytes
/
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
{
"name": "hf-ico",
"version": "1.0.0",
"description": "A simple blockchain and cryptocurrency wallet implemented in Node.js and TypeScript created as an example for the HF-Developers Club.",
"main": "index.js",
"scripts": {
"dev": "tsc -w",
"start": "tsc && nodemon .ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/homewood-flossmoor-dev/hf-ico.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/homewood-flossmoor-dev/hf-ico/issues"
},
"homepage": "https://github.com/homewood-flossmoor-dev/hf-ico#readme",
"devDependencies": {
"@types/express": "^4.17.14",
"@types/node": "^18.11.3",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.8.4"
},
"dependencies": {
"express": "^4.18.2",
"lodash": "^4.17.21",
"socket.io": "^4.5.3",
"socket.io-client": "^4.5.3"
}
}