forked from netlify/remix-compute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.95 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
{
"name": "remix-compute",
"version": "1.0.0",
"description": "Remix adapter and server runtime for Netlify",
"main": "index.js",
"workspaces": [
"packages/remix-edge-adapter",
"packages/remix-runtime",
"packages/edge-demo-site"
],
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"prepare": "(if-env CI=1 || husky install) && npm run build:packages",
"format": "run-s format:fix:*",
"format:ci": "run-s format:check:*",
"format:check:lint": "eslint --cache .",
"format:fix:lint": "eslint --fix --cache .",
"format:check:prettier": "prettier --cache .",
"format:fix:prettier": "prettier --write --cache .",
"e2e": "cypress open",
"build:packages": "npm run build -w=packages/remix-runtime -w=packages/remix-edge-adapter",
"build:packages:watch": "npm run build:watch -w=packages/remix-runtime & npm run build:watch -w=packages/remix-edge-adapter",
"build:edge-demo": "npm run build -w=packages/edge-demo-site"
},
"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": {
"@netlify/eslint-config-node": "^7.0.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"commitlint": "^17.4.2",
"cypress": "^12.5.1",
"eslint": "^8.33.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-prettier-config": "^1.0.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"run-s": "^0.0.0",
"typescript": "^5.0.0",
"vitest": "^0.32.0"
},
"dependencies": {
"@netlify/edge-functions": "^2.0.0",
"husky": "^8.0.3",
"if-env": "^1.0.4",
"isbot": "^3.6.6"
},
"engines": {
"node": ">=14"
}
}