forked from Lobstrco/lobstr-browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.61 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
{
"license": "GPL-3.0",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"workspaces": [
"@shared/constants",
"@shared/api",
"extension",
"@lobstrco/signer-extension-api"
],
"scripts": {
"setup": "yarn install",
"lint": "eslint --fix --ext .js,.jsx,.ts,.tsx .",
"install:extension": "cd extension && yarn install",
"install:shared-constants": "cd @shared/constants && yarn install",
"install:shared-api": "cd @shared/api && yarn install",
"install:api": "cd @lobstrco/signer-extension-api && yarn install",
"postinstall": "run-p install:*",
"build:extension": "yarn workspace extension build",
"start:extension": "yarn workspace extension start",
"start:extension-api": "yarn workspace @lobstrco/signer-extension-api start",
"start:unpacked": "yarn workspace extension start:unpacked-extension",
"start": "run-p --print-label start:extension-api start:extension start:unpacked",
"test:ci": "jest --ci",
"test:e2e": "yarn workspace extension test:e2e",
"test": "jest -o --watch"
},
"browserslist": {
"production": [
"last 3 chrome version",
"last 3 firefox version"
],
"development": [
"last 1 chrome version",
"last 1 firefox version"
]
},
"dependencies": {
"@babel/eslint-parser": "^7.23.10",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-polyfill": "^6.26.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^4.0.1",
"isomorphic-unfetch": "^4.0.2",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"jest-localstorage-mock": "^2.4.26",
"jsdom": "^24.0.0",
"jsdom-global": "^3.0.2",
"prettier": "^2.4.1",
"ts-loader": "9.4.3",
"typescript": "^4.2.3",
"undici": "^6.7.1",
"webpack": "5.88.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1",
"webpack-merge": "5.9.0"
},
"devDependencies": {
"@playwright/test": "^1.42.1",
"npm-run-all": "^4.1.5"
}
}