-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.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
{
"name": "iplds",
"private": true,
"author": "Blockvis <[email protected]> (https://blockvis.com)",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"build": "lerna exec -- yarn build",
"test": "yarn build && lerna exec -- yarn test",
"build:clean": "lerna run build:clean",
"prepare": "husky install",
"lint": "eslint packages/**/*.ts",
"lint:fix": "yarn lint --fix"
},
"lint-staged": {
"packages/**/*.ts": "yarn lint:fix",
"package.json": "sort-package-json"
},
"resolutions": {
"**/ua-parser-js": "1.0.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@types/jest": "^27.0.1",
"@types/node": "^16.10.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-sonarjs": "^0.10.0",
"husky": "^7.0.2",
"jest": "^27.2.5",
"jest-runner-groups": "^2.1.0",
"lerna": "^4.0.0",
"lint-staged": "^11.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"rollup": "^2.58.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^1.4.1",
"sort-package-json": "^1.52.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}