forked from magiclabs/magic-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.53 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
{
"private": true,
"name": "magic-sdk-monorepo",
"version": "0.0.0",
"scripts": {
"bootstrap": "yarn install && lerna link",
"wsrun": "wsrun --bin $INIT_CWD/scripts/wsrun/runner.sh -p $PKG",
"dev": "$INIT_CWD/scripts/clean.sh && $INIT_CWD/scripts/dev.sh",
"build": "$INIT_CWD/scripts/clean.sh && $INIT_CWD/scripts/build.sh",
"clean": "$INIT_CWD/scripts/clean.sh",
"lint": "$INIT_CWD/scripts/lint.sh",
"test": "$INIT_CWD/scripts/test.sh",
"paths": "yarn --silent wsrun --parallel --no-prefix -r -c $INIT_CWD/scripts/wsrun/resolve-paths.ts"
},
"dependencies": {
"snyk": "^1.425.4"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@ikscodes/browser-env": "~0.3.1",
"@ikscodes/eslint-config": "~7.0.0",
"@ikscodes/prettier-config": "~2.0.0",
"@istanbuljs/nyc-config-typescript": "~0.1.3",
"@types/jsdom": "~12.2.4",
"@types/mockery": "^1.4.29",
"@types/react": "^16.9.34",
"@types/react-native": "^0.62.2",
"@types/sinon": "~7.5.0",
"@types/whatwg-url": "^6.4.0",
"@typescript-eslint/eslint-plugin": "~3.4.0",
"auto": "^9.59.1",
"ava": "3.11.0",
"boxen-cli": "^1.0.0",
"eslint": "~7.3.1",
"eslint-import-resolver-typescript": "~2.0.0",
"eslint-plugin-import": "~2.21.0",
"eslint-plugin-jsx-a11y": "~6.3.1",
"eslint-plugin-prettier": "~3.1.4",
"eslint-plugin-react": "~7.20.0",
"eslint-plugin-react-hooks": "~4.0.4",
"find-glob": "^2.1.0",
"glob": "^7.1.6",
"husky": "^4.3.0",
"import-fresh": "^3.2.1",
"lerna": "^3.21.0",
"lint-staged": "^10.0.7",
"microbundle": "0.12.0",
"mockery": "^2.1.0",
"npm-run-all": "^4.1.5",
"nyc": "13.1.0",
"prettier": "~2.0.5",
"react": "^16.13.1",
"react-native": "^0.62.2",
"replace-in-file": "^6.1.0",
"rimraf": "~3.0.0",
"sinon": "7.1.1",
"ts-node": "~8.5.2",
"tsc-watch": "^4.2.9",
"typed-emitter": "^1.0.0",
"typescript": "~3.8.3",
"wsrun": "^5.2.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn wsrun --concurrency 1 --changedSince HEAD -c lint-staged"
}
},
"snyk": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"@magic-sdk/react-native/buffer",
"@magic-sdk/react-native/buffer/**",
"@magic-sdk/react-native/process",
"@magic-sdk/react-native/process/**"
]
},
"repository": "magiclabs/magic-js",
"author": "Magic Labs <[email protected]>",
"auto": {
"plugins": [
"npm",
"released"
]
}
}