-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.24 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.24 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@nexpy/react-easy-context-api",
"description": "A simple way to create, consume and manipulate contexts from react context API.",
"keywords": [
"context-api",
"react",
"nexpy",
"context",
"hooks"
],
"version": "2.0.1",
"license": "MIT",
"author": "AllanOliveiraM",
"main": "./dist/index.js",
"module": "./dist/index.js",
"react-native": "./dist/index.native.js",
"types": "./dist/index.d.ts",
"scripts": {
"husky:install": "husky install",
"precompile:native": ". automation/precompile-native.sh",
"build": "yarn --silent precompile:native && rollup -c",
"build:complete": "rm -rf ./dist && yarn precompile:native && yarn build",
"start": "yarn --silent precompile:native && rollup -c -w",
"commit": "npx git-cz",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"prettier": "prettier --loglevel warn --write .",
"prettier:check": "prettier --check .",
"eslint": "eslint --fix --max-warnings 0 .",
"eslint:check": "eslint --max-warnings 0 ."
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.4.0",
"@types/node": "^16.11.11",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-native": "^0.66.15",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"commitlint": "^15.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.4.0",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.1.2",
"prettier": "^2.5.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-native": "^0.67.1",
"rollup": "^2.62.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"scheduler": "^0.20.2",
"ts-jest": "^27.1.3",
"typescript": "^5.6.3"
},
"peerDependencies": {
"react": ">=18.3.1",
"react-dom": "*",
"react-native": "*",
"scheduler": ">=0.19.0"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
},
"react-native": {
"optional": true
}
},
"jest": {
"testEnvironment": "jsdom",
"preset": "ts-jest/presets/js-with-ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nexpy-io/react-easy-context-api.git"
},
"bugs": {
"url": "https://github.com/nexpy-io/react-easy-context-api/issues"
},
"homepage": "https://github.com/nexpy-io/react-easy-context-api#readme",
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}