-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 2.1 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
{
"devDependencies": {
"@types/jasmine": "3.10.3",
"@types/node": "~14",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"@wireapp/eslint-config": "1.12.0",
"@wireapp/prettier-config": "0.6.4",
"babel-eslint": "10.1.0",
"cross-env": "7.0.3",
"eslint": "7.32.0",
"eslint-config-prettier": "8.9.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jasmine": "4.2.2",
"eslint-plugin-jsdoc": "40.1.1",
"eslint-plugin-no-unsanitized": "3.1.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-typescript-sort-keys": "1.8.0",
"eslint-plugin-unused-imports": "1.1.5",
"husky": "4.3.8",
"jasmine": "3.9.0",
"lerna": "4.0.0",
"lint-staged": "11.1.2",
"nyc": "15.1.0",
"prettier": "2.8.8",
"rimraf": "3.0.2",
"ts-node": "10.9.2",
"typescript": "4.9.5"
},
"prettier": "@wireapp/prettier-config",
"private": true,
"scripts": {
"boot": "lerna bootstrap --reject-cycles",
"clean": "lerna run clean --parallel",
"dist": "lerna run dist",
"fix:code": "yarn lint:code --fix",
"fix:other": "yarn prettier --write",
"fix": "yarn fix:other && yarn fix:code",
"lint": "yarn lint:code && yarn lint:other",
"lint:code": "eslint --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx .",
"lint:other": "yarn prettier --list-different",
"prettier": "prettier \"**/*.{json,md,scss,yml}\"",
"release": "yarn install && yarn dist && lerna publish && yarn clean",
"release:ci": "yarn install && yarn dist && lerna publish --no-verify-access && (lerna publish from-package --no-verify-access || true)",
"style": "prettier --ignore-path .gitignore \"**/*.{md,json,html,ts}\" --write",
"test": "lerna run --no-sort test",
"test:all": "yarn && yarn test",
"test:types": "lerna run test:types"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}