-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "@remix-sse",
"version": "1.0.0",
"description": "",
"repository": {
"url": "https://github.com/dan-cooke/remix-sse"
},
"scripts": {
"release": "turbo build && npx changeset publish",
"build": "turbo build",
"dev": "tsc -w",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"test": "turbo test"
},
"author": "Daniel Cooke <[email protected]>",
"license": "See License in LICENSE.md",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@remix-run/dev": "^2.3.0",
"@remix-run/eslint-config": "^2.3.0",
"@testing-library/react": "^13.4.0",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/ws": "^8.5.3",
"@vitejs/plugin-react": "^4.2.1",
"cypress": "^13.6.0",
"eslint": "^8.38.0",
"husky": "^8.0.0",
"jsdom": "^24.0.0",
"prettier": "^2.6.2",
"turbo": "^1.12.4",
"typescript": "^5.1.6",
"vitest": "^1.3.1",
"wait-on": "^7.2.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"workspaces": [
"examples/**/*",
"packages/**/*"
]
}