-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1011 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1011 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
41
42
{
"name": "cryptocurrency",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rm -rf dist",
"compile": "tsc",
"build": "npm run clean && npm run compile",
"start": "node ./dist/index.js",
"dev": "nodemon index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.2",
"body-parser": "^1.20.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cross-env": "^7.0.3",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.5",
"elliptic": "^6.5.5",
"express": "^4.19.2",
"lodash": "^4.17.21",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"ws": "^8.17.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/crypto-js": "^4.2.2",
"@types/express": "^4.17.21",
"@types/lodash": "^4.17.4",
"@types/node": "^20.12.12",
"@types/ws": "^8.5.10",
"nodemon": "^3.1.1",
"rimraf": "^5.0.7",
"tslint": "^6.1.3"
}
}