-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.19 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
70
71
72
73
74
75
76
77
78
{
"name": "react-context-global-state",
"description": "Simple global state for React with Context API",
"version": "2.1.5",
"author": "Daishi Kato",
"repository": {
"type": "git",
"url": "https://github.com/dai-shi/react-context-global-state.git"
},
"main": "./dist/index.js",
"module": "./src/index.js",
"types": "./src/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"compile": "babel src -d dist",
"test": "npm run eslint && npm run tsc-test && npm run jest",
"eslint": "eslint --ext .js,.ts,.tsx --ignore-pattern dist .",
"jest": "jest",
"tsc-test": "tsc --project . --noEmit",
"examples:01_minimal": "DIR=01_minimal EXT=js webpack-dev-server",
"examples:02_typescript": "DIR=02_typescript webpack-dev-server",
"examples:03_actions": "DIR=03_actions webpack-dev-server",
"examples:04_fetch": "DIR=04_fetch webpack-dev-server",
"examples:05_onmount": "DIR=05_onmount webpack-dev-server"
},
"keywords": [
"react",
"state",
"context",
"stateless",
"thisless",
"pure"
],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"babel-loader": "^8.0.6",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.3",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"react": "^16.12.0",
"react-compose-onmount": "^1.2.0",
"react-compose-state": "^1.6.1",
"react-dom": "^16.12.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.4",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
},
"peerDependencies": {
"react": ">=16.3.0"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
}
}