-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.35 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
{
"name": "rxjs-traces-monorepo",
"private": true,
"license": "MIT",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"lint": "wsrun lint",
"format": "wsrun format",
"start": "wsrun -mt --done-criteria=\"Compiled successfully\" -c start",
"build": "wsrun -mt build"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-image": "^2.0.6",
"@rollup/plugin-typescript": "^8.2.1",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"babel-jest": "^26.6.3",
"eslint": "^7.26.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^4.2.5",
"jest": "^26.6.3",
"lint-staged": "^10.2.11",
"prettier": "^2.3.0",
"regenerator-runtime": "^0.13.7",
"rollup": "^2.48.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-terser": "^7.0.2",
"rxjs": "^7.4.0",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
},
"dependencies": {
"wsrun": "^5.2.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": "prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn lint"
}
},
"resolutions": {
"tslib": "2.3.1"
}
}