This repository has been archived by the owner on Apr 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
69 lines (69 loc) · 1.7 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
{
"name": "root",
"private": true,
"engines": {
"node": ">=12.14.1"
},
"devDependencies": {
"@types/jest": "27.0.2",
"@types/node": "^12.0.0",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/eslint-plugin-tslint": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"concurrently": "^5.3.0",
"eslint": "^7.14.0",
"tslint": "^5.12.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-deprecation": "^1.1.0",
"eslint-plugin-header": "^3.1.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-no-null": "1.0.2",
"eslint-plugin-no-unsanitized": "^3.1.4",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-sonarjs": "0.5.0",
"if-env": "^1.0.4",
"import-sort-style-eslint": "^6.0.0",
"lerna": "^2.11.0",
"prettier": "^2.2.0",
"prettier-plugin-import-sort": "^0.0.6",
"rimraf": "3.0.2",
"ts-node": "^9.1.1",
"typescript": "~4.0.5"
},
"scripts": {
"prepare": "lerna run prepare",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"format": "lerna run format",
"format:fix": "lerna run format:fix",
"publish:next": "lerna run publish:next"
},
"resolutions": {
"dot-prop": "^5.2.0",
"elliptic": "^6.5.3",
"serialize-javascript": "^3.1.0",
"**/**/@types/node": "^12.0.0",
"**/**/minimist": "^1.2.0",
"**/mkdirp": "^0.5.1"
},
"workspaces": {
"packages": [
"generator",
"tools/*",
"extensions/*",
"assembly",
"plugins/*"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"arrowParens": "avoid"
},
"importSort": {
".ts": {
"style": "eslint",
"parser": "typescript"
}
}
}