-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
65 lines (65 loc) · 1.99 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
61
62
63
64
65
{
"name": "remix-compute",
"version": "1.0.0",
"description": "Remix adapter and server runtime for Netlify",
"main": "index.js",
"type": "module",
"scripts": {
"build:packages": "pnpm run --filter '@netlify/*' build",
"build:packages:watch": "pnpm run --filter '@netlify/*' build:watch",
"coverage": "vitest run --coverage",
"format": "run-s format:fix:*",
"format:check:lint": "eslint --cache .",
"format:check:prettier": "prettier --check --cache .",
"format:check": "run-s format:check:*",
"format:fix:lint": "eslint --fix --cache .",
"format:fix:prettier": "prettier --write --cache .",
"test": "pnpm run typecheck && pnpm run format:check && pnpm run test:unit && pnpm run test:e2e",
"test:e2e": "pnpm run build:packages && pnpm exec playwright test",
"test:unit": "vitest",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/netlify/remix-compute.git"
},
"keywords": [
"remix",
"netlify"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/netlify/remix-compute/issues"
},
"homepage": "https://github.com/netlify/remix-compute#readme",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@netlify/eslint-config-node": "^7.0.1",
"@playwright/test": "^1.44.0",
"@remix-run/eslint-config": "^2.9.2",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.33.0",
"eslint-plugin-playwright": "^1.6.0",
"eslint-prettier-config": "^1.0.1",
"execa": "^8.0.1",
"fast-glob": "^3.3.2",
"husky": "^9.0.11",
"lint-staged": "^15.0.0",
"netlify-cli": "^17.36.2",
"npm-run-all2": "^6.0.0",
"p-limit": "^5.0.0",
"prettier": "^3.0.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"dependencies": {
"@netlify/edge-functions": "^2.10.0",
"isbot": "^5.0.0"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@8.15.8"
}