-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 955 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 955 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
{
"name": "npm",
"version": "1.0.0",
"description": "A general purpose proof of stake cryptocurrency, written in TypeScript.",
"main": "src/main.js",
"scripts": {
"start": "npm run compile && node src/main.js",
"compile": "tsc",
"lint": "eslint src/ --ext .ts",
"lint-fix": "eslint src/ --ext .ts --fix"
},
"author": "Jonache Hilton",
"license": "ISC",
"dependencies": {
"bignumber.js": "^9.0.2",
"crypto-js": "^4.1.1",
"elliptic": "^6.5.4",
"express": "^4.17.3",
"lodash": "^4.17.21",
"ws": "^8.5.0"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/lodash": "^4.14.181",
"@types/node": "^17.0.24",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"typescript": "^4.6.3"
}
}