forked from remix-run/remix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.17 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"private": true,
"name": "remix-monorepo",
"license": "MIT",
"scripts": {
"clean": "git clean -fdX .",
"build": "rollup -c && tsc -b",
"dev": "yarn build && yarn --cwd ./fixtures/gists-app/ dev",
"license": "node ./scripts/license.js",
"publish": "node ./scripts/publish.js",
"publish:private": "node ./scripts/publish-private.js",
"test": "jest",
"version": "node ./scripts/version.js",
"watch": "rollup -c -w",
"lint": "eslint --cache --ext .tsx,.ts,.js,.jsx . --fix",
"format": "prettier --ignore-path .eslintignore --write ./ && npm run lint"
},
"workspaces": [
"packages/create-remix",
"packages/remix",
"packages/remix-architect",
"packages/remix-cloudflare-pages",
"packages/remix-cloudflare-workers",
"packages/remix-dev",
"packages/remix-eslint-config",
"packages/remix-express",
"packages/remix-netlify",
"packages/remix-node",
"packages/remix-react",
"packages/remix-serve",
"packages/remix-server-runtime",
"packages/remix-vercel"
],
"dependencies": {
"@architect/parser": "5.0.2",
"@architect/utils": "3.0.4",
"@babel/core": "^7.10.4",
"@babel/eslint-parser": "^7.16.3",
"@babel/plugin-proposal-export-namespace-from": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.12.7",
"@iarna/toml": "2.2.5",
"@octokit/rest": "18.12.0",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rushstack/eslint-patch": "^1.1.0",
"@testing-library/cypress": "^8.0.2",
"@types/cheerio": "^0.22.22",
"@types/jest": "^25.2.3",
"@types/node-fetch": "^2.5.7",
"@types/puppeteer": "^3.0.2",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@types/react-test-renderer": "^17.0.1",
"@types/retry": "^0.12.0",
"@types/semver": "^7.3.4",
"@types/ssri": "^7.1.0",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"abort-controller": "^3.0.0",
"abortcontroller-polyfill": "^1.7.3",
"aws-sdk": "^2.1055.0",
"chalk": "^4.1.0",
"cheerio": "^1.0.0-rc.3",
"concurrently": "^7.0.0",
"cypress": "9.2.0",
"eslint": "^8.1.0",
"eslint-import-resolver-node": "0.3.6",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"express": "^4.17.1",
"glob": "^7.1.6",
"jest": "^26.0.1",
"jsonfile": "^6.0.1",
"meow": "^7.1.1",
"netlify": "10.1.1",
"prettier": "^2.1.2",
"prompt-confirm": "^2.0.4",
"puppeteer": "^9.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.1",
"rollup": "^2.36.1",
"rollup-plugin-copy": "^3.3.0",
"semver": "^7.3.4",
"start-server-and-test": "^1.14.0",
"strip-ansi": "^6.0.1",
"typescript": "^4.2.3",
"unified": "^9.2.0"
},
"engines": {
"node": ">=14"
}
}