-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.18 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "react-create-array-context",
"version": "0.1.0",
"private": false,
"description": "Efficiently use React Context with arrays",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"deploy:patch": "npm run build && npm version patch && npm publish --access public",
"deploy:minor": "npm run build && npm version minor && npm publish --access public",
"deploy:major": "npm run build && npm version major && npm publish --access public",
"test": "jest",
"prepare": "husky install",
"docs": "typedoc --out docs src/index.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/narinluangrath/react-create-array-context.git"
},
"keywords": [],
"author": "Narin Luangrath <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/narinluangrath/react-create-array-context/issues"
},
"homepage": "https://github.com/narinluangrath/react-create-array-context#readme",
"devDependencies": {
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@testing-library/react": "^12.1.0",
"@types/jest": "^26.0.22",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"babel-jest": "^26.6.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.23.2",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"ts-node": "^10.2.1",
"typedoc": "^0.20.35",
"typescript": "^4.2.4"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"src/**/*.{scss,css,md}": "prettier --write"
}
}