-
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) · 1.81 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.81 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": "appengine-staking-dashboard",
"version": "0.0.1",
"description": "Node.js appengine for staking dashboard",
"private": true,
"main": "src/server.ts",
"scripts": {
"test": "ts-node ./tests/index.ts",
"test:load": "ts-node ./tests/many-users.ts"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/test/**/*.spec.(ts|js)",
"**/test/**/*.e2e.(ts|js)"
],
"testEnvironment": "node"
},
"dependencies": {
"@harmony-js/core": "^0.1.53",
"@openzeppelin/contracts": "^2.5.1",
"autobind-decorator": "^2.4.0",
"aws-sdk": "2.738.0",
"axios": "^0.19.0",
"bignumber.js": "^8.1.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"dotenv-expand": "^5.1.0",
"express": "^4.17.1",
"firebase-admin": "^8.7.0",
"lodash": "^4.17.15",
"readline-sync": "^1.4.10",
"request": "^2.88.2",
"web3": "1.2.11"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "1.4.17",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"ava": "0.22.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^21.2.1",
"nodemon": "^2.0.3",
"prettier": "^2.0.2",
"semistandard": "^12.0.1",
"signale": "^1.4.0",
"ts-jest": "^21.1.4",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
}
}