-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
57 lines (57 loc) · 1.51 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
49
50
51
52
53
54
55
56
57
{
"name": "remix-pwa-monorepo",
"private": true,
"license": "MIT",
"workspaces": [
"packages/cli",
"packages/client",
"packages/dev",
"packages/eslint-config",
"packages/lint-staged-config",
"packages/push",
"packages/sw",
"packages/sync",
"packages/worker-runtime",
"playground"
],
"type": "module",
"scripts": {
"build": "turbo build",
"commit": "commit",
"dev": "npm run dev --workspace @remix-pwa/playground",
"lint-staged": "lint-staged",
"lint": "turbo lint -- --fix",
"format": "turbo format -- --write",
"postclone": "npm install && npm run test && npm run build",
"publish:pr": "npx pkg-pr-new publish './packages/*'",
"test": "turbo test -- --coverage"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@commitlint/prompt-cli": "^19.2.0",
"@types/chokidar": "^2.1.3",
"@types/node": "^20.12.7",
"@types/semver": "^7.5.8",
"@vitest/coverage-v8": "^2.0.3",
"chokidar": "^3.5.0",
"cross-env": "^7.0.3",
"esbuild": "^0.19.3",
"esbuild-node-externals": "^1.9.0",
"glob": "^11.0.0",
"husky": "^9.1.1",
"lint-staged": "^15.2.2",
"npm-run-all": "^4.1.5",
"pkg-pr-new": "^0.0.25",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"semver": "^7.6.3",
"turbo": "^2.0.9",
"typescript": "^5.5.3",
"vitest": "^2.0.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
}
}