-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.31 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
{
"name": "@civic/civic-link",
"version": "0.0.7-beta.15",
"author": "civic.com",
"repository": "[email protected]:civicteam/civic-link.git",
"license": "MIT",
"scripts": {
"dev": "vite",
"clean": "rm -rf dist/",
"build": "tsc -b tsconfig.build.json && tsc -b tsconfig.umd.json",
"preview": "vite preview",
"start:validator": "solana-test-validator -q --bpf-program didso1Dpqpm4CsiCjzP766BGY89CAdD6ZBL68cRhFPc test/fixtures/sol_did_3.1.0.so --bpf-program regUajGv87Pti6QRLeeRuQWrarQ1LmEyDXcAozko6Ax test/fixtures/did_registry_0.0.6.so --reset",
"test:unit": "jest -c=jest.config.unit.js test/unit",
"test:integration:only": "jest -c=jest.config.integration.js test/integration --detectOpenHandles --coverage false",
"test:integration": "start-server-and-test start:validator http://localhost:8899/health test:integration:only",
"test": "yarn test:unit && yarn test:integration",
"test:watch": "jest --watch -c jest.updates.config.js --onlyChanged",
"lint": "eslint -c .eslintrc.js '{src,test}/**/*.{ts,tsx}'",
"lint:fix": "eslint -c .eslintrc.js --fix '{src,test}/**/*.{ts,tsx}'"
},
"dependencies": {
"@civic/did-registry": "^0.0.6-alpha.2",
"@civic/react-commons": "^0.0.3",
"@civic/shared-tailwind": "^1.0.2",
"@coinbase/wallet-sdk": "^3.7.1",
"@ethersproject/providers": "^5.7.1",
"@headlessui/react": "^1.7.15",
"@heroicons/react": "^2.0.18",
"@identity.com/sol-did-client": "^3.1.2",
"@solana/wallet-adapter-base": "^0.9.22",
"@solana/wallet-adapter-react": "^0.15.33",
"@solana/wallet-adapter-react-ui": "^0.9.32",
"@solana/wallet-adapter-wallets": "^0.19.19",
"@solana/web3.js": "1.65.0",
"did-resolver": "^3.2.2",
"eslint": "^8.45.0",
"query-string": "^7.1.1",
"ramda": "^0.28.0",
"react-confetti": "^6.1.0",
"styled-components": "^6.0.4",
"twin.macro": "^3.3.1",
"vite-plugin-svgr": "^3.2.0",
"web3-utils": "^1.8.1",
"web3modal": "^1.9.12"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.0",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "14.4.3",
"@types/jest": "^29.5.3",
"@types/jsdom": "^21.1.1",
"@types/ramda": "^0.28.0",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@vitejs/plugin-react": "^4.0.3",
"bn.js": "^5.2.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript-prettier": "^5.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-react": "^7.33.0",
"eslint_d": "^12.2.0",
"jest": "^27.4.7",
"jest-localstorage-mock": "^2.4.26",
"jest-watch-typeahead": "^2.2.2",
"json": "^11.0.0",
"prettier": "^2.8.1",
"ramda": "^0.28.0",
"start-server-and-test": "^2.0.0",
"ts-jest": "29.1.1",
"typescript": "^5.1.6",
"vite": "^4.4.6",
"vite-plugin-babel-macros": "^1.0.6",
"vite-plugin-dts": "^3.3.1"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"files": [
"dist"
],
"main": "./dist/umd/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/typings/index.d.ts",
"babelMacros": {
"twin": {
"config": "./tailwind.config.cjs",
"preset": "styled-components"
}
}
}