-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.44 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
{
"name": "carbon-cut",
"packageManager": "[email protected]",
"private": true,
"main": "index.ts",
"workspaces": [
"packages/*"
],
"scripts": {
"start:mobile": "yarn workspace carbon-cut-mobile run start",
"start:back": "yarn workspace carbon-cut-back run start:dev",
"start": "yarn start:back & yarn start:mobile",
"lint:mobile": "yarn workspace carbon-cut-mobile run lint",
"lint:back": "yarn workspace carbon-cut-back run lint",
"lint": "yarn lint:back & yarn lint:mobile",
"test:mobile": "yarn workspace carbon-cut-mobile run test",
"test:mobile:ci": "yarn workspace carbon-cut-mobile run test:ci",
"test:back": "yarn workspace carbon-cut-back run test",
"test:back:ci": "yarn workspace carbon-cut-back run test:ci",
"test": "yarn test:back & yarn test:mobile",
"test:ci": "yarn test:back:ci & yarn test:mobile:ci",
"build:commons": "yarn workspace carbon-cut-commons run build",
"build": "yarn workspaces foreach -vpi run build"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.3.1",
"prettier": "^2.3.2",
"ts-jest": "^29.0.5",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"typescript": "^4.7.4",
"webpack": "^5.76.0"
}
}