-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2 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
71
72
73
74
75
76
77
78
79
80
{
"name": "event-saver",
"version": "1.0.0",
"description": "A tool that can refer to Dev Protocol event information",
"author": "Akira-Taniguchi",
"license": "MPL-2.0",
"scripts": {
"build": "tsc",
"build:production": "npm run prestart && npm prune --production",
"watch": "tsc --w",
"prestart": "npm run build && func extensions install",
"start:host": "func start",
"start": "npm-run-all --parallel start:host watch",
"test": "npm run build && jest --runInBand --testTimeout=50000",
"lint": "npm run lint:eslint && npm run lint:format",
"lint:eslint": "eslint . --ext .ts --fix",
"lint:format": "prettier --write '**/*.{json,md,yml}'",
"prepare": "husky install"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"jsx",
"ts",
"tsx",
"node"
],
"transform": {
"^.+\\.(ts)$": "ts-jest"
},
"globals": {
"ts-jest": {
"config": "tsconfig.json"
}
},
"testMatch": [
"**/test/main/**/*.ts"
]
},
"dependencies": {
"@types/pg": "7.14.11",
"bignumber.js": "9.0.1",
"discord-webhook-ts": "3.0.3",
"pg": "8.5.1",
"ts-node": "9.1.1",
"typeorm": "0.2.31",
"web3": "1.3.4"
},
"devDependencies": {
"@azure/functions": "1.2.3",
"@types/jest": "26.0.20",
"@typescript-eslint/eslint-plugin": "4.17.0",
"@typescript-eslint/parser": "4.17.0",
"azure-function-context-mock": "0.0.7",
"azurite": "3.11.0",
"eslint": "7.21.0",
"eslint-config-prettier": "8.1.0",
"eslint-config-xo": "0.35.0",
"eslint-config-xo-typescript": "0.38.0",
"eslint-plugin-jest": "24.2.1",
"eslint-plugin-prettier": "3.3.1",
"husky": "5.1.3",
"dotenv": "8.2.0",
"jest": "26.6.3",
"npm-run-all": "4.1.5",
"prettier": "2.2.1",
"ts-jest": "26.5.3",
"typescript": "4.2.3",
"lodash": "4.17.21"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dev-protocol/event-saver.git"
},
"bugs": {
"url": "https://github.com/dev-protocol/event-saver/issues"
},
"homepage": "https://github.com/dev-protocol/event-saver/blob/main/README.JA.md"
}