forked from etherspot/etherspot-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.68 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
{
"name": "etherspot",
"version": "1.0.0-rc.6",
"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://docs.etherspot.dev",
"main": "./dist/node.js",
"browser": "./dist/browser.js",
"types": "./dist/index.d.ts",
"scripts": {
"start": "exit 1",
"format": "prettier --write \"{src,test}/**/*.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 [email protected]:etherspot/docs.etherspot.dev.git"
},
"dependencies": {
"@apollo/client": "3.1.3",
"@etherspot/contracts": "1.0.0-rc.1",
"ethers-typed-data": "0.1.0",
"class-transformer": "0.3.2",
"class-validator": "0.12.2",
"cross-fetch": "3.0.6",
"graphql": "15.3.0",
"subscriptions-transport-ws": "0.9.17",
"validator": "13.0.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.0.8",
"expect": "25.5.0",
"gh-pages": "3.1.0",
"jest": "25.5.4",
"prettier": "2.0.5",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"rxjs": "6.6.2",
"serve": "11.3.2",
"ts-jest": "25.5.1",
"ts-node": "8.10.2",
"typedoc": "0.17.4",
"typescript": "3.9.3",
"ws": "7.3.0"
},
"peerDependencies": {
"ethers": "^5.0.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"
]
}
}