-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.32 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
{
"name": "coldwired",
"description": "An implementation of @hotwired/turbo based on remix and morphdom",
"license": "MIT",
"repository": "tchak/coldwired",
"keywords": [
"turbo",
"stimulus"
],
"scripts": {
"turbo": "turbo run test lint build",
"build": "turbo run build --force",
"test": "turbo run test",
"test:webkit": "turbo run test:webkit",
"test:firefox": "turbo run test:firefox",
"lint": "turbo run lint",
"clean": "turbo run clean",
"prepare": "pnpm run build",
"docs:dev": "pnpm oranda dev",
"docs:build": "pnpm oranda build"
},
"devDependencies": {
"@axodotdev/oranda": "^0.6.1",
"@changesets/cli": "^2.27.1",
"@testing-library/dom": "^10.1.0",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@vitest/browser": "^1.5.2",
"@vitest/ui": "^1.5.2",
"c8": "^9.1.0",
"del-cli": "^5.1.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^8.0",
"npm-run-all": "^4.1.5",
"playwright": "^1.43.1",
"prettier": "^3.2.5",
"rollup": "^4.17.1",
"turbo": "^1.13.3",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vitest": "^1.5.2"
},
"engines": {
"node": ">=16"
},
"packageManager": "[email protected]",
"prettier": {
"singleQuote": true,
"printWidth": 100
}
}