-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 801 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 801 Bytes
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
{
"name": "root",
"private": true,
"workspaces": [
"plugins/*",
"docs",
"examples/*"
],
"scripts": {
"build": "nx run-many --target=build --all --parallel=false",
"publish": "lerna publish --no-private -y from-package",
"test": "lerna run test",
"format": "prettier --write \"**/*.{js,ts,json,md}\"",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{js,ts,json,md}": "prettier --write"
},
"devDependencies": {
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"genkit": "^0.9.0 || ^1.0.0",
"husky": "^9.0.11",
"lerna": "^8.1.2",
"lint-staged": "^15.2.2",
"nx": "^20.1.0",
"prettier": "^3.2.5"
},
"dependencies": {
"uuid": "^11.0.2"
},
"optionalDependencies": {
"@nx/nx-linux-x64-gnu": "20.1.0"
}
}