-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
128 lines (128 loc) · 4.6 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
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
{
"dependencies": {
"@wireapp/api-client": "27.17.0",
"@wireapp/commons": "5.4.0",
"@wireapp/react-ui-kit": "9.28.1",
"@wireapp/telemetry": "0.1.5",
"core-js": "3.39.0",
"dotenv": "16.4.7",
"dotenv-extended": "2.9.0",
"i18next": "24.2.0",
"i18next-browser-languagedetector": "8.0.2",
"i18next-react-postprocessor": "3.1.0",
"jest-environment-jsdom": "29.7.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-i18next": "11.18.6",
"react-router": "7.1.1",
"react-router-dom": "6.28.0",
"uuid": "11.0.3"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.26.3",
"@babel/preset-typescript": "7.26.0",
"@emotion/babel-preset-css-prop": "11.12.0",
"@testing-library/react": "12.1.4",
"@types/jest": "29.5.14",
"@types/node": "22.10.2",
"@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.5",
"@typescript-eslint/eslint-plugin": "8.18.2",
"@typescript-eslint/parser": "7.17.0",
"@wireapp/copy-config": "2.2.11",
"@wireapp/eslint-config": "1.4.0",
"adm-zip": "0.5.16",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.5",
"babel-plugin-remove-jsx-attributes": "0.0.2",
"cross-env": "7.0.3",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.10.0",
"eslint-plugin-jsdoc": "50.6.1",
"eslint-plugin-no-unsanitized": "4.1.2",
"eslint-plugin-prettier": "5.2",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-simple-import-sort": "8.0.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"fs-extra": "11.2.0",
"generate-changelog": "1.8.0",
"husky": "4.3.8",
"i18next-scanner": "4.6.0",
"jest": "29.7.0",
"lint-staged": "15.3.0",
"os-browserify": "0.3.0",
"path-browserify": "1.0.1",
"prettier": "3.2.4",
"simple-git": "3.27.0",
"sort-json": "2.0.1",
"svg-inline-loader": "0.8.2",
"terser-webpack-plugin": "5.3.11",
"ts-jest": "29.2.5",
"typescript": "5.6.3",
"webpack": "5.97.1",
"webpack-bundle-analyzer": "4.10.2",
"webpack-cli": "6.0.1",
"webpack-dev-middleware": "7.4.2",
"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.6.1",
"packageManager": "[email protected]"
}