-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
103 lines (103 loc) · 3.33 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
{
"name": "remix-image-monorepo",
"author": "Josh McFarlin <josh@mcfarl.in>",
"license": "MIT",
"private": true,
"homepage": "https://remix-image.mcfarl.in",
"repository": {
"type": "git",
"url": "https://github.com/Josh-McFarlin/remix-image.git"
},
"bugs": {
"url": "https://github.com/Josh-McFarlin/remix-image/issues"
},
"workspaces": [
"packages/*",
"examples/*"
],
"lint-staged": {
"*.{ts,tsx,js,jsx}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,json,css,scss}": "prettier --write"
},
"scripts": {
"setup-repo": "node scripts/delete-node-packages.js && npm i && husky install && cd docs && npm i",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,scss}\"",
"lint": "eslint --fix --ext ts --ext tsx --ext js --ext jsx .",
"typecheck": "tsc --project tsconfig.json --noEmit",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"commit": "git-cz",
"update-docs": "npm run deploy --prefix docs",
"prepare": "husky install"
},
"dependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@cloudflare/kv-asset-handler": "^0.2.0",
"@cloudflare/workers-types": "^3.10.0",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@commitlint/cz-commitlint": "^17.3.0",
"@commitlint/prompt-cli": "^17.3.0",
"@next-boost/hybrid-disk-cache": "^0.3.0",
"@release-it/bumper": "^4.0.0",
"@release-it/keep-a-changelog": "^3.1.0",
"@rollup/plugin-commonjs": "^23.0.4",
"@rollup/plugin-inject": "^5.0.2",
"@rollup/plugin-json": "^5.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.1",
"@rollup/plugin-terser": "~0.1.0",
"@rollup/plugin-wasm": "^6.0.1",
"@testing-library/jest-dom": "^5.16.0",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.4",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"babel-jest": "^29.3.1",
"babel-loader": "^9.1.0",
"chalk": "^5.2.0",
"commitizen": "^4.2.4",
"concurrently": "^7.6.0",
"core-js": "^3.21.1",
"dotenv-cli": "^6.0.0",
"eslint": "^8.4.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"fs-extra": "^11.1.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jsonfile": "^6.1.0",
"lint-staged": "^13.1.0",
"mime-tree": "^0.1.4",
"prettier": "^2.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"regenerator-runtime": "^0.13.9",
"release-it": "^15.4.2",
"remix": "^1.6.1",
"rimraf": "^3.0.2",
"rollup": "^3.7.4",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-polyfill-node": "^0.11.0",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.3",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=16"
}
}