-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 985 Bytes
/
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
{
"name": "react-hot-wire",
"version": "0.4.1",
"description": "Dependency Injection in React with hot-wire",
"scripts": {
"build": "babel src --out-dir lib",
"prepublish": "npm run build"
},
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/rootsher/react-hot-wire.git"
},
"keywords": [
"react",
"hot-wire",
"react-hot-wire",
"dependency",
"injection",
"container",
"IoC"
],
"author": "Konrad Kowalski <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/rootsher/react-hot-wire/issues"
},
"homepage": "https://github.com/rootsher/react-hot-wire#readme",
"dependencies": {
"react": "^16.12.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"prettier": "^1.19.1"
}
}