-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
{
"name": "react-extend-context",
"version": "1.0.0",
"description": "Simple API for extending rather than replacing React.Context values",
"main": "dist/ReactExtendContext.js",
"typings": "dist/ReactExtendContext.d.ts",
"peerDependencies": {
"react": "^16.3.0"
},
"scripts": {
"start": "webpack --watch",
"build": "webpack --mode=production",
"lint": "eslint \"**/*.{ts,tsx,js}\"",
"prettier": "prettier --write \"src/**/*.{ts,tsx}\"",
"test": "jest"
},
"author": {
"name": "Jason Addleman"
},
"keywords": [
"react",
"react.context",
"context",
"typescript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jas7457/react-extend-context"
},
"devDependencies": {
"@testing-library/react": "^9.1.3",
"@types/jest": "^24.0.15",
"@types/react": "^16.8.20",
"@types/react-dom": "^16.9.0",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-jest": "^22.15.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.13.0",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-dom": "^16.9.0",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.2",
"typescript": "^3.5.2",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4"
}
}