-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
43 lines (43 loc) · 1.24 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
{
"name": "b2b-buyer-portal",
"version": "2.0.0",
"private": true,
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "[email protected]",
"scripts": {
"build": "turbo run build",
"build:production": "turbo run build",
"build:staging": "turbo run build:staging",
"build:staging-atx": "turbo run build:staging",
"build:tier1": "turbo run build:tier1",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint --parallel --continue",
"format": "turbo run format --parallel --continue",
"test": "turbo run test",
"prepare": "husky install",
"clean": "yarn run clean:node-modules",
"clean:node-modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"postinstall": "patch-package",
"release": "release-it"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@release-it/conventional-changelog": "^8.0.1",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-b2b": "*",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"patch-package": "^8.0.0",
"prettier": "^2.8.8",
"release-it": "^17.2.1",
"turbo": "^2.0.3"
},
"engines": {
"node": ">=14.0.0"
}
}