-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.42 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
{
"name": "review-cat",
"license": "MIT",
"version": "1.3.1",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "yarn workspace web dev & yarn workspace main dev",
"build": "yarn workspace web build && yarn workspace main build",
"package": "yarn workspace main package",
"prepare": "husky install",
"lint:all": "yarn workspace web lint:all && yarn workspace main lint:all",
"format:all": "yarn workspace web format:all && yarn workspace main format:all",
"test": "yarn workspace web test && yarn workspace main test && yarn test:e2e",
"test:e2e": "yarn workspace e2e test",
"test:coverage": "yarn workspace web test --coverage && yarn workspace main test --coverage",
"type-check": "yarn workspace web type-check && yarn workspace main type-check"
},
"devDependencies": {
"@review-cat/eslint-config-custom": "*",
"@review-cat/tsconfig": "*",
"@swc-node/jest": "1.5.5",
"@swc/helpers": "^0.4.14",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"cpx": "^1.5.0",
"dotenv": "^16.0.3",
"eslint": "^8.31.0",
"husky": "^8.0.3",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.2",
"rimraf": "^3.0.2",
"ts-mockito": "^2.6.1",
"typescript": "^4.9.4"
}
}