-
Notifications
You must be signed in to change notification settings - Fork 298
Expand file tree
/
Copy pathpackage.json
More file actions
135 lines (135 loc) · 4.69 KB
/
package.json
File metadata and controls
135 lines (135 loc) · 4.69 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"dependencies": {
"@wireapp/commons": "5.4.13",
"axios": "1.13.5",
"dotenv": "17.3.1",
"dotenv-extended": "2.9.0",
"fs-extra": "11.3.3",
"http-status-codes": "2.3.0",
"logdown": "3.3.1",
"long": "5.3.2",
"tslib": "2.8.1",
"uuid": "11.1.0",
"zod": "3.25.76"
},
"devDependencies": {
"@faker-js/faker": "9.9.0",
"@nx/jest": "22.5.2",
"@nx/node": "22.5.2",
"@nx/workspace": "22.5.2",
"@tony.ganchev/eslint-plugin-header": "3.2.4",
"@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/jest": "29.5.14",
"@types/js-yaml": "4.0.9",
"@types/jsdom": "21.1.7",
"@types/node": "24.10.8",
"@types/tough-cookie": "4.0.5",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "8.56.1",
"@wireapp/copy-config": "2.3.13",
"@wireapp/eslint-config": "3.1.9",
"@wireapp/prettier-config": "0.6.11",
"archiver": "7.0.1",
"babel-jest": "29.7.0",
"cross-env": "10.1.0",
"dpdm": "3.15.1",
"eslint": "9.39.3",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "29.15.0",
"eslint-plugin-jest-dom": "5.5.0",
"eslint-plugin-jsdoc": "61.7.1",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-no-unsanitized": "4.1.5",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-testing-library": "7.16.0",
"eslint-plugin-unused-imports": "4.4.1",
"fake-indexeddb": "6.2.5",
"generate-changelog": "1.8.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"js-yaml": "4.1.1",
"jsdom": "25.0.1",
"nock": "14.0.11",
"nx": "22.5.2",
"playwright": "1.58.2",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"simple-git": "3.32.3",
"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/*",
"libraries/*"
],
"repository": {
"type": "git",
"url": "https://github.com/wireapp/wire-webapp.git"
},
"scripts": {
"build:libs": "nx run-many -t build --projects=tag:type:lib",
"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 2>&1 | grep -v '\\[dotenv@'",
"changelog:staging": "nx run workspace-tools:changelog-staging 2>&1 | grep -v '\\[dotenv@'",
"changelog:rc": "nx run workspace-tools:changelog-rc 2>&1 | grep -v '\\[dotenv@'",
"deploy": "nx run server:package && eb deploy",
"dev": "yarn start",
"dev:packages": "nx run-many -t watch --projects=tag:type:lib",
"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": "nx run webapp:configure",
"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",
"release": "nx release",
"release:dry-run": "nx release --dry-run",
"release:version": "nx release version",
"release:publish": "nx release publish",
"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.13.5",
"dexie": "4.0.7",
"dotenv": "17.3.1",
"@types/react": "18.3.27",
"@types/react-dom": "18.3.7"
},
"version": "0.27.0",
"packageManager": "yarn@4.12.0"
}