-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.28 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
{
"name": "react-undo-redo",
"version": "3.0.0",
"description": "A library to add undo-redo to any reducer",
"main": "lib/index.js",
"repository": "git@github.com:frontendphil/react-undo-redo.git",
"author": "Philipp Giese <giese.philipp+git@gmail.com>",
"license": "Apache-2.0",
"private": false,
"scripts": {
"clean": "rimraf lib",
"prebuild": "yarn clean",
"build": "tsc --project tsconfig.json",
"prepublishOnly": "yarn build && yarn test --run",
"test": "vitest",
"format": "prettier --write .",
"prepare": "husky install"
},
"devDependencies": {
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.2.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.5",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@types/testing-library__jest-dom": "6.0.0",
"husky": "9.1.7",
"jsdom": "^26.0.0",
"prettier": "3.5.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"rimraf": "6.0.1",
"typescript": "5.8.2",
"vitest": "3.0.8"
},
"prettier": {
"semi": false
},
"lint-staged": {
"*.{ts,tsx,js,json,html}": "prettier"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"tiny-invariant": "^1.1.0"
}
}