-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
105 lines (105 loc) · 2.85 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "etherspot",
"version": "1.44.0",
"description": "Etherspot SDK",
"keywords": [
"ether",
"ethereum",
"sdk",
"onboarding",
"layer2",
"blockchain"
],
"repository": {
"type": "git",
"url": "https://github.com/etherspot/etherspot-sdk.git"
},
"license": "MIT",
"homepage": "https://etherspot.dev",
"main": "./dist/node.js",
"browser": "./dist/browser.js",
"types": "./dist/index.d.ts",
"scripts": {
"start": "exit 1",
"format": "prettier --write \"{src,test,examples}/**/*.ts\"",
"lint": "eslint \"{src,test}/**/*.ts\"",
"lint-fix": "npm run lint -- --fix",
"test": "npm run test:unit",
"test:unit": "jest",
"test:unit-watch": "jest --watch",
"test:unit-cov": "jest --coverage",
"test:cucumber": "cucumber-js",
"prebuild": "rimraf ./dist",
"build": "npm run compile",
"compile": "tsc -p ./tsconfig.build.json",
"compile-watch": "npm run compile -- --watch",
"predocs:build": "rimraf ./docs",
"docs:build": "typedoc ./src",
"postdocs:build": "cp -r ./.github-pages/files/* ./docs && date > ./docs/.nojekyll",
"docs:serve": "serve ./docs",
"docs:deploy": "gh-pages -d ./docs -b master -r git@github.com:etherspot/docs.etherspot.dev.git",
"prepare": "husky install"
},
"dependencies": {
"@apollo/client": "3.4.0",
"@etherspot/contracts": "1.9.9",
"@lifi/sdk": "1.6.4",
"@nerdwallet/apollo-cache-policies": "1.2.1",
"@walletconnect/universal-provider": "^2.10.0",
"class-transformer": "0.4.0",
"class-validator": "0.14.0",
"cross-fetch": "3.1.5",
"graphql": "15.5.3",
"subscriptions-transport-ws": "0.9.18",
"validator": "13.7.0"
},
"devDependencies": {
"@cucumber/cucumber": "7.0.0-rc.0",
"@types/graphql": "14.5.0",
"@types/jest": "25.2.3",
"@types/node": "13.13.9",
"@types/ws": "7.2.4",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.20.2",
"ethers": "5.6.8",
"expect": "25.5.0",
"gh-pages": "3.2.3",
"husky": "^8.0.0",
"jest": "25.5.4",
"prettier": "2.0.5",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"rxjs": "6.6.7",
"serve": "14.1.2",
"ts-jest": "25.5.1",
"ts-node": "8.10.2",
"typedoc": "0.17.8",
"typescript": "3.9.3",
"ws": "7.4.6"
},
"peerDependencies": {
"ethers": "^5.6.8",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.6.2"
},
"jest": {
"moduleFileExtensions": [
"json",
"js",
"ts"
],
"rootDir": ".",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "./coverage",
"testEnvironment": "jsdom",
"setupFiles": [
"./node_modules/reflect-metadata/Reflect.js"
]
}
}