-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
89 lines (89 loc) · 2.77 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "envelop",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"lint": "eslint src/ test/ scripts/ --ext .ts,.json",
"lint:fix": "yarn lint --fix",
"typecheck": "tsc --noEmit",
"build": "tsc",
"dev": "nodemon src/index.ts -e js,ts,hbs,json",
"start": "node dist/src/index.js",
"start:test": "dotenv -e test/.env.test yarn dev",
"test:setup": "dotenv -e test/.env.test yarn ts-node ./test/setupDb.ts",
"test": "PORT=3030 start-server-and-test 'yarn start:test' 3030 'dotenv -e test/.env.test jest --runInBand'",
"test:unit": "dotenv -e test/.env.test jest test/unit/",
"test:e2e": "PORT=3030 start-server-and-test 'yarn start:test' 3030 'dotenv -e test/.env.test jest --runInBand --collectCoverage=false test/e2e/'"
},
"eslintConfig": {
"extends": "@snapshot-labs"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"engines": {
"node": "^18.0.0"
},
"prettier": "@snapshot-labs/prettier-config",
"dependencies": {
"@apollo/client": "^3.7.17",
"@ethersproject/address": "^5.7.0",
"@ethersproject/wallet": "^5.7.0",
"@sendgrid/mail": "^7.7.0",
"@snapshot-labs/snapshot-metrics": "^1.3.0",
"@snapshot-labs/snapshot-sentry": "^1.5.4",
"bluebird": "^3.7.2",
"bull": "^4.10.4",
"compression": "^1.7.4",
"connection-string": "^4.4.0",
"cors": "^2.8.5",
"dayjs": "^1.11.9",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-prom-bundle": "^6.6.0",
"graphql": "^16.8.0",
"handlebars": "^4.7.8",
"juice": "^9.1.0",
"lodash.chunk": "^4.2.0",
"marked": "< 5",
"mysql": "^2.18.1",
"node-fetch": "2.7.0",
"prom-client": "^14.2.0",
"remove-markdown": "^0.5.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@snapshot-labs/eslint-config": "^0.1.0-beta.9",
"@snapshot-labs/prettier-config": "^0.1.0-beta.7",
"@types/bluebird": "^3.5.38",
"@types/bull": "^4.10.0",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/lodash.chunk": "^4.2.7",
"@types/marked": "^4.3.0",
"@types/mysql": "^2.15.21",
"@types/node": "^20.5.0",
"@types/node-fetch": "^2.6.4",
"@types/remove-markdown": "^0.3.1",
"@types/supertest": "^2.0.12",
"dotenv-cli": "^7.2.1",
"eslint": "^8.47.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-node-single-context": "^29.1.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.2",
"sass": "^1.66.1",
"start-server-and-test": "^2.0.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}