generated from apollographql/typescript-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
72 lines (72 loc) · 2.21 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
{
"name": "@apollo/typescript-repo-template",
"private": true,
"description": "A template for TypeScript projects with pre-configured tooling",
"version": "0.0.0",
"author": "Apollo <[email protected]>",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/apollographql/typescript-repo-template"
},
"homepage": "https://github.com/apollographql/typescript-repo-template#readme",
"bugs": {
"url": "https://github.com/apollographql/typescript-repo-template/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=14.0"
},
"scripts": {
"start": "ts-node ./src/simple.ts",
"build": "tsc --build tsconfig.build.json",
"clean": "git clean -dfqX",
"install-with-npm-8.5": "npm i -g npm@^8.5.0 && npm i",
"prepack": "npm run build",
"prettier-check": "prettier --check .",
"prettier-fix": "prettier --write .",
"publish-changeset": "changeset publish",
"spell-check": "cspell lint '**' --no-progress || (echo 'Add any real words to cspell-dict.txt.'; exit 1)",
"test": "jest",
"test:ci": "jest --coverage --ci --maxWorkers=2 --reporters=default --reporters=jest-junit",
"watch": "tsc --build --watch"
},
"devDependencies": {
"@changesets/changelog-github": "0.4.7",
"@changesets/cli": "2.25.2",
"@types/jest": "29.2.3",
"@types/node": "14.18.34",
"@types/objects-to-csv": "^1.3.1",
"@uniswap/sdk-core": "^3.1.0",
"cspell": "6.16.0",
"jest": "29.3.1",
"jest-junit": "15.0.0",
"prettier": "2.8.0",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"typescript": "4.9.3"
},
"volta": {
"node": "18.12.1",
"npm": "9.1.3"
},
"dependencies": {
"@adraffy/ens-normalize": "^1.9.2",
"@influxdata/influxdb-client": "^1.33.2",
"@influxdata/influxdb-client-apis": "^1.33.2",
"@uniswap/v3-sdk": "^3.9.0",
"async-await-queue": "^2.1.4",
"csv-stringify": "^6.4.0",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"graphql": "^16.6.0",
"graphql-request": "^5.0.0",
"influx": "^5.9.3",
"jsbi": "^3.2.5",
"matplotlib": "^1.0.0",
"nodeplotlib": "^1.1.2",
"objects-to-csv": "^1.3.6"
}
}