-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.16 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.16 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
{
"name": "react-modal-ctx",
"version": "1.0.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "karolis.krusinskas@gmail.com",
"license": "MIT",
"scripts": {
"build": "tsc",
"start:example": "webpack server --config ./examples/webpack.config.js",
"test": "jest --coverage"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"tags": [
"react",
"modal",
"management",
"context"
],
"keywords": [
"react",
"react-component",
"modal",
"modal management",
"context",
"react modal context",
"functional"
],
"devDependencies": {
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.0.3",
"@types/react": "^17.0.34",
"@types/react-modal": "^3.13.1",
"jest": "^27.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-modal": "^3.14.4",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.6",
"ts-node": "^10.6.0",
"typescript": "^4.3.5",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.2"
},
"peerDependencies": {
"react": "^16.8.0"
}
}