-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.32 KB
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": "rockpack",
"version": "8.0.0",
"private": true,
"license": "MIT",
"workspaces": [
"book",
"e2e/*",
"examples/compiler/*",
"examples/tester/*",
"packages/*"
],
"scripts": {
"build": "npm run build:babel && npm run build:utils && npm run build:compiler && npm run build:codestyle && npm run build:tester && npm run build:starter",
"build:babel": "lerna run build --scope=@rockpack/babel",
"build:codestyle": "lerna run build --scope=@rockpack/codestyle",
"build:compiler": "lerna run build --scope=@rockpack/compiler",
"build:utils": "lerna run build --scope=@rockpack/utils",
"build:tester": "lerna run build --scope=@rockpack/tester",
"build:starter": "lerna run build --scope=@rockpack/starter",
"lint": "lerna run lint",
"format": "lerna run format",
"production": "lerna run production",
"test": "lerna run test --stream",
"cloc": "tsx cloc.ts",
"updater": "tsx updater.ts",
"version:set": "tsx version.ts"
},
"simple-git-hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint && npm test"
},
"dependencies": {
"@inquirer/select": "5.0.4",
"sort-package-json": "3.6.0"
},
"devDependencies": {
"@types/node": "24.10.13",
"cross-env": "7.0.3",
"lerna": "9.0.7",
"simple-git-hooks": "2.13.1"
}
}