-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.91 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
58
59
60
{
"name": "remix-kit",
"version": "0.2.3",
"license": "MIT",
"author": "James Restall",
"private": true,
"scripts": {
"update-deps": "pnpm update -i -r --latest",
"preinstall": "only-allow pnpm",
"setup": "pnpm install",
"build": "pnpm -r run prepack",
"build:stub": "pnpm -r run prepack --stub",
"release": "git push --follow-tags && pnpm run -r release --access public",
"changelog": "echo 'generate master changelog' && conventional-changelog -p react -i CHANGELOG.md -s && git add CHANGELOG.md",
"changeset": "changeset",
"syncpack": "syncpack list-mismatches",
"test": "pnpm test -r",
"publish": "pnpm publish -r",
"ci:version": "pnpm changelog && pnpx changeset version && pnpm install --no-frozen-lockfile && git add .",
"ci:publish": "pnpm build && git status && pnpm publish -r",
"changeset-publish": "changeset publish",
"format": "npx prettier --write .",
"lint": "npx eslint ."
},
"dependencies": {
"@remix-run/node": "^1.9.0",
"@remix-run/react": "^1.9.0",
"@remix-run/serve": "^1.9.0",
"isbot": "^3.6.5",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "2.26.0",
"@nrwl/cli": "15.4.5",
"@nrwl/workspace": "15.4.5",
"@remix-run/eslint-config": "^1.9.0",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"nx": "15.4.5",
"only-allow": "^1.0.0",
"prettier": "^2.7.1",
"syncpack": "^8.4.11",
"typescript": "^4.9.4",
"unbuild": "^1.0.2",
"vite": "^4.0.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=14",
"pnpm": ">=7"
}
}