forked from wireapp/wire-webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.85 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.85 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"devDependencies": {
"@nx/jest": "22.3.3",
"@nx/node": "22.3.3",
"@nx/playwright": "22.3.3",
"@nx/workspace": "22.3.3",
"@tony.ganchev/eslint-plugin-header": "3.1.11",
"@types/eslint": "9.6.1",
"@types/eslint-plugin-jsx-a11y": "^6.10.1",
"@types/fs-extra": "11.0.4",
"@types/generate-changelog": "1.8.3",
"@types/js-yaml": "4.0.9",
"@types/node": "24.10.4",
"@typescript-eslint/eslint-plugin": "8.52.0",
"@typescript-eslint/parser": "8.52.0",
"@wireapp/copy-config": "2.3.10",
"@wireapp/eslint-config": "3.1.7",
"@wireapp/prettier-config": "0.6.9",
"archiver": "7.0.1",
"cross-env": "10.1.0",
"dpdm": "3.14.0",
"eslint": "9.39.2",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "29.12.1",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-jsdoc": "61.5.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-no-unsanitized": "^4.1.4",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-testing-library": "^7.15.4",
"eslint-plugin-unused-imports": "^4.3.0",
"generate-changelog": "1.8.0",
"husky": "9.1.7",
"js-yaml": "4.1.1",
"lint-staged": "16.2.7",
"nx": "22.3.3",
"playwright": "^1.57.0",
"prettier": "3.7.4",
"rimraf": "6.1.2",
"simple-git": "3.30.0",
"stylelint": "16.26.1",
"stylelint-config-idiomatic-order": "10.0.0",
"ts-node": "10.9.2",
"tsc-watch": "7.2.0",
"typescript": "5.9.3"
},
"engines": {
"yarn": ">=4.12.0",
"node": ">=24.10.0"
},
"license": "GPL-3.0",
"name": "wire-webapp",
"prettier": "@wireapp/prettier-config",
"private": true,
"workspaces": [
"apps/*"
],
"repository": {
"type": "git",
"url": "https://github.com/wireapp/wire-webapp.git"
},
"scripts": {
"bundle:dev": "nx build webapp --configuration=development",
"bundle:prod": "nx build webapp --configuration=production",
"clean:jest": "nx reset && nx run workspace-tools:clean-jest",
"clean:yarn": "find . -name node_modules -type d -prune -exec rm -rf '{}' + && yarn cache clean",
"changelog:production": "nx run workspace-tools:changelog-production",
"changelog:staging": "nx run workspace-tools:changelog-staging",
"changelog:rc": "nx run workspace-tools:changelog-rc",
"deploy": "nx run server:package && eb deploy",
"dev": "yarn start",
"docker": "nx run workspace-tools:docker",
"fix": "nx format:write && nx run-many -t lint --all --fix",
"lint": "nx run-many -t lint --all",
"lint:fix": "nx run-many -t lint --all --fix",
"lint:other": "nx format:check --base=dev --head=HEAD && nx run webapp:stylelint",
"postinstall": "node bin/fix-libsodium-wrappers.js && nx run webapp:configure && husky install",
"prettier": "nx format:check --base=dev --head=HEAD",
"release:staging": "nx run workspace-tools:release-staging",
"release:production": "nx run workspace-tools:release-production",
"release:custom": "nx run workspace-tools:release-custom",
"start": "nx serve server",
"stylelint": "nx run webapp:stylelint",
"e2e-test": "nx e2e webapp",
"e2e-ui": "nx e2e webapp --ui",
"build:prod": "nx run server:package",
"test": "nx run-many -t test --all",
"type-check": "nx run-many -t type-check --all"
},
"resolutions": {
"typescript": "5.9.3",
"xml2js": "0.5.0",
"@stablelib/utf8": "1.0.2",
"dexie-encrypted@2.0.0": "patch:dexie-encrypted@npm%3A2.0.0#./.yarn/patches/dexie-encrypted-npm-2.0.0-eb61eb5975.patch",
"axios": "^1.9.0",
"dexie": "4.0.7",
"@types/react": "18.2.37",
"@types/react-dom": "18.2.11",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"version": "0.27.0",
"packageManager": "yarn@4.12.0"
}