-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
48 lines (48 loc) · 1.27 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
44
45
46
47
48
{
"name": "npm-catalogue",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*",
"plugins/*"
],
"scripts": {
"build": "turbo run build",
"bump-version": "turbo run bump-version",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{js,ts,tsx,md}\" --cache",
"prepare": "lefthook install",
"release": "turbo run release",
"submodules:load": "git submodule update --init",
"submodules:sync": "git submodule update --recursive --remote",
"test": "dotenv -- turbo run test"
},
"dependencies": {
"@babel/core": "7.23.6",
"@babel/preset-env": "7.23.6",
"@sliit-foss/automatic-versioning": "workspace:*",
"dotenv-cli": "7.0.0",
"esbuild": "0.17.5",
"esbuild-plugin-glob": "2.2.1",
"jest": "29.4.1",
"rimraf": "4.1.2",
"shx": "0.3.4",
"turbo": "1.7.3"
},
"devDependencies": {
"@commitlint/cli": "19.2.1",
"@commitlint/config-conventional": "19.1.0",
"@sliit-foss/eslint-config-internal": "workspace:*",
"eslint": "8.33.0",
"eslint-config-turbo": "0.0.7",
"lefthook": "1.6.10",
"nodemon": "2.0.21",
"prettier": "3.2.5"
},
"engines": {
"node": ">=14.0.0",
"pnpm": ">=7.5.0"
},
"packageManager": "pnpm@9.6.0"
}