-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.97 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
66
67
68
69
70
71
72
73
74
75
{
"name": "appengine-staking-dashboard",
"version": "0.0.1",
"description": "Node.js appengine for staking dashboard",
"private": true,
"main": "src/server.ts",
"scripts": {
"start": "node ./dist/server.js",
"start:watch": "tsc -w & nodemon -q -w ./dist ./dist/server.js",
"start:prod": "node ./dist/server.js",
"build": "rm -rf ./dist && tsc",
"test": "jest --forceExit",
"path": "tspath",
"prepublishOnly": "npm version patch"
},
"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.55",
"@openzeppelin/contracts": "^3.2.0",
"@sentry/node": "^5.25.0",
"autobind-decorator": "^2.4.0",
"aws-sdk": "^2.767.0",
"axios": "^0.20.0",
"bignumber.js": "^9.0.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": "^9.2.0",
"lodash": "^4.17.20",
"moment": "^2.29.0",
"request": "^2.88.2",
"web3": "^1.3.0",
"zerg": "^2.1.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"ava": "^3.13.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.5.0",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"semistandard": "^14.2.3",
"ts-jest": "^26.4.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}