-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2.12 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "waves-rosetta",
"version": "0.1.0",
"description": "Rosetta-API implementation for Waves Protocol",
"repository": {
"type": "git",
"url": "https://github.com/"
},
"author": "Inal Kardanov",
"license": "MIT",
"scripts": {
"build": "npm run build-ts",
"build-ts": "tsc",
"debug": "npm run build && npm run watch-debug",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"serve": "node dist/server.js",
"serve-debug": "nodemon --inspect dist/server.js",
"start": "npm run serve",
"test": "jest --forceExit --coverage --verbose",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\"",
"watch-node": "nodemon dist/server.js",
"watch-test": "npm run test -- --watchAll",
"watch-ts": "tsc -w"
},
"dependencies": {
"@types/async": "^3.2.3",
"@types/axios": "^0.14.0",
"@types/errorhandler": "^1.5.0",
"@waves/ts-lib-crypto": "^1.4.3",
"@waves/waves-transactions": "^3.25.6",
"async": "^3.2.0",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.12",
"@types/compression": "^1.7.0",
"@types/eslint": "^6.8.1",
"@types/express": "^4.17.7",
"@types/jest": "^24.9.1",
"@types/node": "^12.12.54",
"@types/shelljs": "^0.8.8",
"@types/supertest": "^2.0.10",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"chai": "^4.2.0",
"concurrently": "^5.3.0",
"eslint": "^6.8.0",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"shelljs": "^0.8.4",
"supertest": "^4.0.2",
"ts-jest": "^24.3.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}