forked from remix-run/remix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 4.22 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "remix-monorepo",
"private": true,
"license": "MIT",
"workspaces": [
"packages/create-remix",
"packages/remix",
"packages/remix-architect",
"packages/remix-cloudflare",
"packages/remix-cloudflare-pages",
"packages/remix-cloudflare-workers",
"packages/remix-deno",
"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"
],
"scripts": {
"bug-report-test": "playwright test --config ./integration/playwright.config.ts integration/bug-report-test.ts",
"build": "rollup -c && tsc -b",
"postbuild": "node scripts/copy-build-to-dist.mjs",
"clean": "git clean -fdX .",
"clean:build": "node ./scripts/clean-build.mjs",
"format": "prettier --ignore-path .eslintignore --write ./ && npm run lint:fix",
"format:deno": "deno fmt integration/helpers/deno-template packages/remix-deno templates/deno --ignore=packages/remix-deno/node_modules",
"license": "node ./scripts/license.js",
"lint": "eslint --cache --ext .tsx,.ts,.js,.jsx,.md .",
"lint:deno": "deno lint integration/helpers/deno-template packages/remix-deno templates/deno --ignore=packages/remix-deno/node_modules",
"lint:fix": "yarn lint --fix",
"playground:new": "node ./scripts/playground/new.js",
"publish": "node ./scripts/publish.js",
"publish:private": "node ./scripts/publish-private.js",
"release": "node ./scripts/release.js",
"test": "run-p \"test:*\"",
"pretest:integration": "yarn build",
"test:integration": "playwright test --config ./integration/playwright.config.ts",
"posttest:integration": "rimraf ./.tmp/integration",
"test:primary": "jest",
"version": "node ./scripts/version.js",
"watch": "rollup -c --watch --watch.onEnd=\"tsc -b && node scripts/copy-build-to-dist.mjs\""
},
"dependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-proposal-export-namespace-from": "^7.16.7",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@mcansh/remark-definition-links": "2.4.1",
"@octokit/core": "^3.6.0",
"@octokit/graphql": "^4.8.0",
"@octokit/plugin-paginate-rest": "^2.17.0",
"@octokit/rest": "^18.12.0",
"@playwright/test": "1.20.2",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-node-resolve": "^11.0.1",
"@testing-library/cypress": "^8.0.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@types/cheerio": "^0.22.22",
"@types/cross-spawn": "^6.0.2",
"@types/glob": "7.2.0",
"@types/jest": "^27.4.1",
"@types/jsonfile": "^6.1.0",
"@types/lodash": "^4.14.182",
"@types/node-fetch": "^2.5.7",
"@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",
"abort-controller": "^3.0.0",
"abortcontroller-polyfill": "^1.7.3",
"aws-sdk": "^2.1055.0",
"babel-jest": "^27.5.1",
"babel-plugin-transform-remove-console": "^6.9.4",
"chalk": "^4.1.0",
"cheerio": "^1.0.0-rc.3",
"concurrently": "^7.0.0",
"cross-spawn": "^7.0.3",
"cypress": "^9.6.0",
"eslint": "^8.1.0",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-prefer-let": "^3.0.1",
"express": "^4.17.1",
"glob": "8.0.3",
"jest": "^27.5.1",
"jest-watch-select-projects": "^2.0.0",
"jest-watch-typeahead": "^0.6.5",
"jsonfile": "^6.0.1",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"prompt-confirm": "^2.0.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remark": "14.0.2",
"remark-frontmatter": "4.0.1",
"remark-gfm": "3.0.1",
"rollup": "^2.36.1",
"rollup-plugin-copy": "^3.3.0",
"semver": "^7.3.4",
"simple-git": "^3.2.4",
"sort-package-json": "^1.54.0",
"strip-indent": "^3.0.0",
"to-vfile": "7.2.3",
"type-fest": "^2.11.1",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=14"
}
}