-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.2 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
{
"name": "chigiri",
"version": "0.0.1",
"description": "A react context and provider for wrapping components in promises.",
"author": "sigmachirality",
"license": "SEE LICENSE IN LICENSE",
"private": true,
"source": "src/index.tsx",
"scripts": {
"watch": "parcel watch",
"build": "parcel build"
},
"main": "./lib/main.js",
"module": "./lib/module.js",
"types": "./lib/types.d.ts",
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/sigmachirality/chigiri"
}
"devDependencies": {
"@parcel/packager-ts": "2.7.0",
"@parcel/transformer-typescript-types": "2.7.0",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"parcel": "^2.7.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.7.4"
},
"lint-staged": {
"src/*.{ts,tsx}": [
"prettier --write --ignore-unknown",
"eslint"
]
}
}