-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
70 lines (70 loc) · 2.68 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
{
"name": "concordium-browser-wallet",
"version": "0.1.0",
"description": "chrome extensions wallet for the concordium blockchain",
"repository": "[email protected]:Concordium/concordium-browser-wallet.git",
"author": "Concordium Software",
"license": "Apache-2.0",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"packageManager": "[email protected]",
"scripts": {
"lint": "eslint . --cache --max-warnings 0 --ext .ts,.tsx",
"type:check": "yarn workspaces foreach -vt run tsc --noEmit",
"build:all": "yarn build:api-helpers && yarn workspaces foreach -vt --exclude @concordium/browser-wallet-api-helpers run build",
"postinstall": "husky install",
"test": "yarn workspaces foreach run test",
"generate-disclaimer": "yarn licenses generate-disclaimer --production > ./disclaimer.txt && node disclaimer.js"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix --max-warnings 0"
],
"{*.json,.{eslintrc,prettierrc,stylelintrc}}": [
"prettier --ignore-path .eslintignore --parser json --write"
],
"*.{css,scss}": [
"stylelint --ignore-path .eslintignore --fix"
],
"*.{html,md,yml}": [
"prettier --ignore-path .eslintignore --single-quote --write"
]
},
"devDependencies": {
"@types/jest": "^28.1.7",
"@types/node": "^17.0.25",
"@types/pbkdf2": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.51.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"husky": "^7.0.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^12.3.8",
"prettier": "^2.6.2",
"stylelint": "^14.7.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-prettier": "^2.0.0",
"stylelint-scss": "^4.2.0",
"ts-node": "^10.7.0",
"tsc-files": "^1.1.3",
"tsconfig-paths": "^3.14.1",
"typescript": "^5.2.2"
},
"resolutions": {
"@concordium/web-sdk@^8.1.0": "patch:@concordium/web-sdk@npm:^8.1.0#.yarn/patches/@concordium-web-sdk-npm-8.1.0-468ad0a8b1.patch"
}
}