This repository has been archived by the owner on Jun 18, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·70 lines (70 loc) · 2.08 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
{
"name": "reshoot",
"description": "All-in-one responsive image processing framework",
"version": "0.0.0",
"type": "module",
"private": true,
"pm": "pnpm@7.9.5",
"engines": {
"node": ">=18",
"pnpm": ">=7"
},
"author": "Billy Kwok <opensource@billykwok.me>",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"clean": "turbo run clean",
"build": "turbo run build",
"test": "turbo run test lint",
"lint": "turbo run lint",
"version": "changeset version && pnpm install --no-frozen-lockfile",
"publish": "changeset publish"
},
"workspaces": [
"packages/*"
],
"resolutions": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.13",
"@babel/eslint-parser": "^7.18.9",
"@babel/node": "^7.18.10",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@changesets/cli": "^2.24.3",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@jest/globals": "^29.0.0",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@types/jest": "^28.1.8",
"@types/node": "^18.7.13",
"@types/rollup-plugin-peer-deps-external": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.7",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-testing-library": "^5.6.0",
"husky": "^8.0.1",
"jest": "^29.0.0",
"jest-cli": "^29.0.0",
"node-notifier": "^10.0.1",
"prettier": "^2.7.1",
"rollup": "^2.78.1",
"rollup-plugin-node-externals": "^4.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"turbo": "^1.4.3",
"typescript": "^4.7.4"
}
}