This repository has been archived by the owner on Nov 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.62 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
{
"name": "@arthurgeron/context-selector",
"version": "1.0.1",
"description": "React Context API Native Selector",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"repository": "https://github.com/arthurgeron/context-selector",
"author": "Arthur Geron <[email protected]>",
"license": "CC-BY-SA-4.0",
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "ttsc",
"build:cjs": "ttsc --module commonjs --outDir lib/cjs",
"lint": "eslint --ignore-path .gitignore"
},
"lint-staged": {
"*.{ts,js,jsx,tsx}": [
"yarn lint"
]
},
"devDependencies": {
"@arthurgeron/eslint-config": "^1.0.5",
"@react-native-community/eslint-config": "^3.0.1",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"@zerollup/ts-transform-paths": "^1.7.18",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-no-inline-styles": "^1.0.5",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-radar": "^0.2.1",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ttypescript": "^1.5.12",
"typescript": "4.4.3"
},
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"files": [
"/lib"
]
}