-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.38 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.38 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
{
"name": "react-pretty-context",
"version": "1.0.0",
"description": "Simple and easy way to manage context state",
"main": "./build/cjs/index.js",
"module": "./build/esm/index.js",
"sideEffects": false,
"scripts": {
"clean": "rimraf docs/index.html docs/dist",
"build": "npm run clean && webpack --color --mode production",
"build-dev": "npm run clean && webpack --color --mode development",
"prepare": "rimraf build && npm run tsc",
"tsc": "tsc -p tsconfig-esm.json && tsc -p tsconfig-cjs.json",
"prestart": "npm run clean",
"start": "webpack-dev-server --mode development",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dgpedro/react-pretty-context.git"
},
"keywords": [
"react",
"context",
"react-context",
"hooks",
"context-selector",
"actions",
"dispatcher"
],
"author": "Diogo Pedro",
"license": "MIT",
"bugs": {
"url": "https://github.com/dgpedro/react-pretty-context/issues"
},
"homepage": "https://github.com/dgpedro/react-pretty-context#readme",
"devDependencies": {
"@babel/cli": "^7.12.16",
"@babel/core": "^7.12.16",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.12.16",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.12.16",
"@babel/runtime": "^7.12.13",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/styled-components": "^5.1.7",
"@types/uuid": "^8.3.0",
"babel-loader": "^8.2.2",
"fork-ts-checker-webpack-plugin": "^6.1.0",
"html-webpack-plugin": "^5.1.0",
"jest": "^26.6.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rimraf": "^3.0.2",
"scheduler": "^0.20.1",
"styled-components": "^5.2.1",
"ts-node": "^9.1.1",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^4.1.5",
"webpack": "^5.22.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"use-context-selector": "^1.3.7",
"uuid": "^8.3.2"
},
"peerDependencies": {
"@types/react": "^16.8.5",
"@types/react-dom": "^16.8.5",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"scheduler": ">=0.19.0"
}
}