-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 4.65 KB
/
Copy pathpackage.json
File metadata and controls
131 lines (131 loc) · 4.65 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
{
"engines": {
"node": ">=22.16.0"
},
"dependencies": {
"@wireapp/api-client": "27.96.0",
"@wireapp/commons": "5.4.13",
"@wireapp/react-ui-kit": "9.79.0",
"@wireapp/telemetry": "0.3.10",
"core-js": "3.50.0",
"dotenv": "17.4.2",
"dotenv-extended": "2.9.0",
"i18next": "25.10.9",
"i18next-browser-languagedetector": "8.2.1",
"i18next-react-postprocessor": "3.1.0",
"jest-environment-jsdom": "30.4.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-i18next": "11.18.6",
"react-router": "7.18.2",
"react-router-dom": "6.28.0",
"uuid": "11.1.0"
},
"devDependencies": {
"@babel/core": "8.0.1",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "7.29.7",
"@babel/preset-react": "7.29.7",
"@babel/preset-typescript": "7.29.7",
"@emotion/babel-preset-css-prop": "11.12.0",
"@testing-library/react": "12.1.4",
"@types/jest": "30.0.0",
"@types/node": "^24",
"@types/platform": "1.3.6",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/react-router-dom": "5.3.3",
"@types/uuid": "10.0.0",
"@types/webpack-env": "1.18.8",
"@typescript-eslint/eslint-plugin": "8.66.0",
"@typescript-eslint/parser": "7.17.0",
"@wireapp/copy-config": "2.3.13",
"@wireapp/eslint-config": "1.4.0",
"adm-zip": "0.6.0",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.5",
"babel-plugin-remove-jsx-attributes": "0.0.2",
"cross-env": "10.1.0",
"eslint": "8.57.0",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "29.16.0",
"eslint-plugin-jsdoc": "61.5.0",
"eslint-plugin-no-unsanitized": "4.1.5",
"eslint-plugin-prettier": "5.5",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-simple-import-sort": "8.0.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"fs-extra": "11.4.0",
"generate-changelog": "1.8.0",
"husky": "4.3.8",
"i18next-scanner": "4.6.0",
"jest": "30.4.2",
"lint-staged": "16.4.0",
"os-browserify": "0.3.0",
"path-browserify": "1.0.1",
"prettier": "3.2.4",
"simple-git": "3.36.0",
"sort-json": "2.0.1",
"svg-inline-loader": "0.8.2",
"terser-webpack-plugin": "5.6.1",
"ts-jest": "29.4.12",
"typescript": "5.6.3",
"webpack": "5.109.2",
"webpack-bundle-analyzer": "5.3.1",
"webpack-cli": "6.0.1",
"webpack-dev-middleware": "7.4.5",
"webpack-hot-middleware": "2.26.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"license": "GPL-3.0",
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
],
"*.{json,less,md,yml}": [
"prettier --write"
]
},
"name": "wire-account",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/wireapp/wire-account.git"
},
"scripts": {
"build:server": "cd server && yarn build",
"bundle:prod": "yarn build:server && cross-env-shell NODE_ENV=production yarn clean && yarn webpack && node bin/version_file.js && node bin/deployment_archive.js",
"bundle:staging": "yarn build:server && cross-env-shell BABEL_ENV=development NODE_ENV=production yarn clean && yarn webpack && node bin/version_file.js && node bin/deployment_archive.js",
"clean": "exit 0",
"docker": "node bin/push_docker.js",
"fix:code": "yarn lint:code --fix",
"fix:other": "yarn prettier --write",
"fix": "yarn fix:other && yarn fix:code",
"lint:code": "eslint --ignore-path .gitignore --ignore-path .eslintignore --ext .js,.ts,.tsx .",
"lint:other": "yarn prettier --list-different",
"lint": "yarn lint:code && yarn lint:other",
"postinstall": "copy-config && cd server && yarn",
"preversion": "yarn test && yarn changelog && git add CHANGELOG.md && git commit -m 'chore: Update CHANGELOG.md'",
"postversion": "git push && git push --tags",
"prettier": "prettier \"**/*.{json,less,md,yml}\"",
"start": "cd server && yarn start",
"test": "yarn test:types && yarn jest --coverage",
"test:types": "tsc --noEmit && cd server && yarn test:types",
"translate:download": "node ./bin/translations_download.js",
"translate:extract": "yarn bundle:staging && i18next-scanner 'server/dist/**/*.{js,html}'",
"translate:upload": "yarn translate:extract && node bin/translations_upload.js",
"webpack": "webpack --config webpack.config.prod.js",
"webpack:dev": "webpack --config webpack.config.dev.js",
"changelog": "node ./bin/changelog.js"
},
"version": "2.10.0",
"packageManager": "yarn@3.5.0"
}