-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 886 Bytes
/
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
{
"name": "react-client-store",
"version": "1.0.0-rc.3",
"description": "",
"source": "src/index.tsx",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"LICENSE",
"package.json"
],
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"prepare": "husky install",
"check": "tsc --noEmit"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@parcel/packager-ts": "2.8.3",
"@parcel/transformer-typescript-types": "2.8.3",
"@types/react": "18.2.6",
"husky": "^8.0.0",
"parcel": "^2.8.3",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"react": "^18.2.0",
"typescript": "5.0.4"
},
"peerDependencies": {
"react": ">17"
},
"prettier": {
"singleQuote": true,
"bracketSpacing": false,
"trailingComma": "all"
}
}