-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.5 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
{
"name": "scooby",
"repository": "https://github.com/AnimaApp/scooby.git",
"private": true,
"scripts": {
"build:all": "yarn workspaces run build",
"check:lint": "yarn eslint --ext .ts packages",
"check:format": "yarn prettier --check 'packages/**/*.ts'",
"clean:all": "yarn workspaces run clean",
"release:prepare": "yarn lerna version --conventional-commits",
"release:prepare:ci": "yarn lerna version --conventional-commits --yes",
"release:publish": "yarn lerna publish from-git",
"release:publish:ci": "yarn lerna publish from-git --yes",
"prepare": "yarn husky install",
"api": "yarn workspace @animaapp/scooby-api",
"cli": "yarn workspace @animaapp/scooby-cli",
"cli:run:dev": "yarn workspace @animaapp/scooby-cli build && ./packages/scooby-cli/bin/run",
"core": "yarn workspace @animaapp/scooby-core",
"service": "yarn workspace @animaapp/scooby-service",
"shared": "yarn workspace @animaapp/scooby-shared",
"web": "yarn workspace @animaapp/scooby-web"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@parcel/packager-raw-url": "2.7.0",
"@parcel/transformer-webmanifest": "2.7.0",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "8.5.0",
"husky": "^7.0.4",
"lerna": "^4.0.0",
"prettier": "2.6.1",
"process": "^0.11.10"
}
}