-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
92 lines (92 loc) · 2.69 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
{
"name": "decentraland-connect",
"version": "0.0.0-development",
"main": "cjs/index.js",
"module": "esm/index.js",
"exports": {
".": {
"import": "./esm/index.js",
"require": "./cjs/index.js"
}
},
"files": [
"esm",
"cjs"
],
"scripts": {
"lint": "tslint --project tsconfig.json -e '*.json' -c tslint.json 'src/**/*.ts{,x}'",
"lint:fix": "tslint --fix --project tsconfig.json -e '*.json' -c tslint.json 'src/**/*.ts{,x}'",
"postbuild": "node scripts/postbuild.js",
"build:esm": "tsc --project tsconfig.esm.json",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build": "npm run build:esm && npm run build:cjs",
"test": "TS_NODE_PROJECT=tsconfig-tests.json nyc mocha --require ts-node/register --project ./tsconfig-tests.json --watch-files src, test/**/*.ts",
"test:watch": "npm test -- --watch",
"test:report": "npx nyc --silent --no-clean npm run test && npx nyc report --reporter=lcov --reporter=text",
"semantic-release": "semantic-release",
"commitmsg": "validate-commit-msg"
},
"dependencies": {
"@dcl/schemas": "^15.1.2",
"@dcl/single-sign-on-client": "^0.1.0",
"@magic-ext/oauth2": "^9.19.0",
"@walletconnect/ethereum-provider": "^2.17.1",
"@walletconnect/modal": "^2.6.2",
"@web3-react/fortmatic-connector": "^6.1.6",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/network-connector": "^6.1.3",
"@web3-react/walletlink-connector": "^6.2.13",
"ethers": "^5.7.2",
"magic-sdk": "^27.0.0",
"socket.io-client": "^4.7.2",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^5.2.7",
"@types/node": "^18.18.9",
"@types/sinon": "^9.0.9",
"@web3-react/types": "^6.0.7",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dcl-tslint-config-standard": "^1.0.1",
"husky": "^0.14.3",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"prettier": "^1.10.2",
"rimraf": "^2.6.3",
"semantic-release": "^17.3.0",
"sinon": "^9.2.2",
"ts-node": "^9.1.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-language-service": "^0.9.9",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.1.3",
"validate-commit-message": "^3.0.1"
},
"prettier": {
"printWidth": 80,
"singleQuote": true,
"semi": false
},
"nyc": {
"all": true,
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"reporter": [
"text-summary"
],
"sourceMap": true,
"instrument": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/decentraland/decentraland-connect.git"
}
}