-
Notifications
You must be signed in to change notification settings - Fork 109
/
package.json
37 lines (37 loc) · 1.09 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
{
"name": "@hookstate/workspace",
"version": "4.0.0",
"description": "The workspace for @hookstate.",
"license": "MIT",
"author": {
"name": "Andrey Konstantinov"
},
"repository": {
"url": "https://github.com/avkonst/hookstate"
},
"bugs": {
"url": "https://github.com/avkonst/hookstate/issues"
},
"homepage": "https://github.com/avkonst/hookstate",
"engines": {
"node": ">=16",
"pnpm": ">=7.18.2"
},
"scripts": {
"build": "nx run-many --target=build --all",
"test": "nx run-many --target=test --all",
"test:ci": "nx run-many --target=test:ci --all",
"update:deps": "nx run-many --target=update:deps --all",
"clean": "nx run-many --target=clean --all",
"release": "nx run-many --target=release --all",
"nx:w": "nodemon node_modules/@nrwl/cli/bin/nx.js"
},
"devDependencies": {
"@nrwl/cli": "15.3.3",
"@nrwl/workspace": "15.3.3",
"jest": "28.1.2",
"nodemon": "^2.0.16",
"nx": "15.3.3",
"typescript": "4.6.2"
}
}