-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
94 lines (94 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
94
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint . --ext .tsx,.ts",
"publish:npm": "lerna publish --force-publish --conventional-commits",
"postinstall": "husky install",
"version": "yarn run bootstrap && yarn build",
"bootstrap": "lerna bootstrap",
"prebuild": "yarn clean",
"build": "lerna run build --stream",
"clean": "lerna run clean --stream --parallel",
"accounts": "yarn workspace @portkey/accounts run",
"contracts": "yarn workspace @portkey/contracts run",
"did": "yarn workspace @portkey/did run",
"ramp": "yarn workspace @portkey/ramp run",
"example": "yarn workspace @portkey/example run",
"next-example": "yarn workspace @portkey/next-example run",
"graphql": "yarn workspace @portkey/graphql run",
"request": "yarn workspace @portkey/request run",
"services": "yarn workspace @portkey/services run",
"did-ui": "yarn workspace @portkey/did-ui-react run",
"types": "yarn workspace @portkey/types run",
"utils": "yarn workspace @portkey/utils run",
"validator": "yarn workspace @portkey/validator run",
"test": "vitest",
"test:dev": "yarn test --watch",
"test:browser": "jest --config=jest.browser.config.ts",
"make-badges": "istanbul-badges-readme"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-decorators": "^7.20.13",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@jest/globals": "^29.3.1",
"@next/bundle-analyzer": "^12.2.4",
"@rollup/plugin-image": "^3.0.2",
"@rollup/plugin-url": "^8.0.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/react-hooks": "^8.0.1",
"@tsconfig/recommended": "^1.0.1",
"@types/elliptic": "^6.4.14",
"@types/testing-library__jest-dom": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"@vitest/coverage-v8": "^2.1.8",
"babel-jest": "^29.3.1",
"browser-resolve": "^2.0.0",
"esbuild": "^0.17.7",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-tsdoc": "^0.2.17 ",
"fix-esm-import-path": "^1.4.0",
"happy-dom": "^15.11.7",
"husky": "^8.0.1",
"isomorphic-fetch": "^3.0.0",
"istanbul-badges-readme": "^1.8.5",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.4.3",
"lerna": "^6.5.1",
"lint-staged": ">=13",
"node-fetch": "^3.3.0",
"postcss": "^8.4.21",
"postcss-url": "^10.1.3",
"prettier": "^2.6.2",
"rollup": "3.15.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-css-porter": "^1.0.2",
"rollup-plugin-esbuild": "5.0.0",
"rollup-plugin-html": "^0.2.1",
"rollup-plugin-lit-css": "4.0.1",
"rollup-plugin-minify-html-literals": "1.2.6",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-tsconfig-paths": "^5.1.3",
"vitest": "^2.1.8"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
},
"version": "0.0.0"
}