-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.22 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.22 KB
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
66
67
68
69
70
{
"name": "node-typescript-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"types": "./types/global.d.ts",
"scripts": {
"start": "ts-node-dev -r tsconfig-paths/register index.ts",
"build": "npm run lint && tsc -p .",
"start:local": "npm run lint && NODE_ENV=local ts-node-dev -r tsconfig-paths/register index.ts",
"start:test": "npm run lint && NODE_ENV=test node build/server.js",
"start:staging": "npm run lint && NODE_ENV=staging node build/server.js",
"start:production": "npm run lint && NODE_ENV=production node build/server.js",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint --fix src/**/*.ts",
"pretty": "prettier --write 'src/**/*.ts'",
"prepare": "husky install",
"test:custom": "npm test -- tests/unit-tests/lib/crypto.spec.ts",
"precommit": "npm run lint-fix && npm run pretty",
"prepush": "npm run lint ",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "Santosh Shinde",
"license": "Apache-2.0",
"dependencies": {
"@bholdus/api-options": "^0.0.1",
"@bholdus/types": "^0.0.1",
"@polkadot/api": "^6.5.2",
"@types/express": "^4.17.12",
"@types/node": "^16.0.0",
"@types/winston": "^2.3.9",
"cors": "^2.8.5",
"defekt": "^8.0.0",
"dotenv": "^10.0.0",
"ethers": "^5.5.1",
"express": "^4.17.1",
"helmet": "^4.6.0",
"http-status-codes": "^2.1.4",
"inversify": "^6.0.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.4.0",
"typescript": "^4.3.5",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/jest": "^27.0.1",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.30.0",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"supertest": "^6.1.4",
"ts-jest": "^27.0.5",
"ts-node": "^10.0.0",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.11.0"
},
"packageManager": "yarn@2.4.3",
"volta": {
"node": "17.0.1"
}
}