forked from ProtonMail/WebClients
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.5 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
{
"name": "root",
"private": true,
"license": "GPL-3.0",
"workspaces": [
"applications/*",
"packages/*",
"tests",
"utilities/*"
],
"scripts": {
"app-versions": "bash utilities/app-versions/app-versions.sh",
"config-app": "(packages/config/install 2>/dev/null) || true",
"create-atom": "yarn workspace @proton/atoms create-atom",
"postinstall": "is-ci || (husky install; yarn run config-app)",
"start-all": "cd utilities/local-sso && bash ./run.sh",
"version": "yarn workspace version run version"
},
"resolutions": {
"@noble/ed25519@1.7.1": "patch:@noble/ed25519@npm:1.7.1#.yarn/patches/@noble-ed25519-npm-1.6.0-59c82563e0",
"@types/jest": "^27.5.2",
"@types/react": "^17.0.52",
"@types/react-dom": "^17.0.18",
"memfs": "^3.4.12",
"safe-buffer": "^5.2.1"
},
"dependencies": {
"@proton/eslint-config-proton": "workspace:packages/eslint-config-proton",
"@proton/stylelint-config-proton": "workspace:packages/stylelint-config-proton",
"is-ci": "^3.0.1",
"stylelint-use-logical-spec": "^4.1.0",
"typescript": "^4.9.3"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"prettier": "^2.8.0",
"sort-package-json": "^2.1.0"
},
"packageManager": "yarn@3.3.0",
"engines": {
"node": ">= v18.12.1"
}
}