-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1005 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1005 Bytes
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
{
"name": "@crystallize/reactjs-hooks",
"license": "MIT",
"version": "0.8.0",
"author": "Crystallize <hello@crystallize.com> (https://crystallize.com)",
"contributors": [
"Sébastien Morel <sebastien@crystallize.com>"
],
"scripts": {
"watch": "tsc -W",
"build": "tsc",
"test": "jest",
"bump": "yarn tsc && yarn version --no-git-tag-version --new-version"
},
"repository": {
"type": "git",
"url": "https://github.com/CrystallizeAPI/reactjs-hooks.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/node": "^17.0.14",
"@types/react": "^17 || ^18",
"@types/react-dom": "^17 || ^18",
"jest": "^27.5.1"
},
"dependencies": {
"@crystallize/js-api-client": "*",
"typescript": "^4.5.5"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
}
}