forked from Web3Auth/Auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.63 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
{
"name": "toruslabs",
"private": true,
"repository": "[email protected]:torusresearch/OpenLoginSdk.git",
"scripts": {
"bootstrap": "lerna bootstrap",
"publish:lerna": "yarn clean && yarn bootstrap && lerna publish",
"clean": "lerna clean --yes && lerna exec -- rimraf package-lock.json yarn.lock dist/ .rts2_cache_{cjs,esm}/ toruslabs-*.tgz .eslintcache",
"build": "lerna run build",
"dev": "lerna run dev",
"test": "lerna run test --parallel",
"test-debugger": "lerna run test-debugger --parallel",
"build:types": "lerna run build:types",
"lint": "lerna run lint --parallel",
"pack:lerna": "lerna exec --since HEAD -- 'yarn pack'",
"pre-commit": "lerna run pre-commit",
"prepare": "husky install"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/plugin-syntax-bigint": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@babel/register": "^7.15.3",
"@babel/runtime-corejs3": "^7.15.3",
"@types/bn.js": "^5.1.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.1",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^13.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-problems": "^5.0.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "~2.24.1",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"eslint-webpack-plugin": "^2.5.4",
"husky": "^7.0.1",
"jsdom": "^17.0.0",
"jsdom-global": "^3.0.2",
"lerna": "^4.0.0",
"lint-staged": "^11.1.2",
"mocha": "^9.1.0",
"node-fetch": "^2.6.1",
"parallel-webpack": "^2.6.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.10.1",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.3.5",
"webpack": "^4.46.0",
"webpack-cli": "^4.8.0"
},
"author": "Torus Labs",
"license": "MIT",
"lint-staged": {
"*": "lerna run --concurrency 1 --stream --since HEAD --exclude-dependents pre-commit -- "
},
"engines": {
"node": ">=14.17.0",
"npm": "~6.x"
}
}