-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "origin9-monorepo",
"version": "1.0.0",
"private": true,
"repository": "git@github.com:murilolmartins/origin9-monorepo.git",
"license": "MIT",
"author": "Murilo Martins <murilolmartins1@gmail.com>",
"main": "index.js",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"dev:all": "npx lerna run dev --stream",
"lint": "eslint packages --max-warnings=0",
"pre-commit-lint": "yarn lint-staged",
"prepare": "husky install",
"server": "yarn workspace @monorepo/server",
"test:all": "npx lerna run test --stream --parallel",
"web": "yarn workspace @monorepo/web"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@monorepo/eslint-config": "*",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.2",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lerna": "^7.1.4",
"lint-staged": "^13.2.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}