forked from ProtonMail/WebClients
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.13 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
{
"name": "root",
"private": true,
"license": "GPL-3.0",
"workspaces": [
"applications/*",
"packages/*",
"tests",
"utilities/*"
],
"scripts": {
"config-app": "(packages/config/install 2>/dev/null) || true",
"postinstall": "is-ci || (husky install; yarn run config-app)",
"start-all": "cd utilities/local-sso && ./run.sh",
"version": "yarn workspace scripts run version:applications"
},
"resolutions": {
"@types/jest": "^27.4.0",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"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",
"typescript": "^4.5.4"
},
"devDependencies": {
"husky": "^7.0.4",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1",
"sort-package-json": "^1.53.1"
},
"engines": {
"node": ">= v16.13.2"
},
"packageManager": "[email protected]"
}