-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 881 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
{
"name": "redoox",
"version": "0.1.0",
"description": "Redux state management pattern using React Hooks.",
"author": "jake-daniels",
"repository": {
"url": "https://github.com/jake-daniels/redoox"
},
"license": "MIT",
"private": true,
"workspaces": [
"redoox",
"example"
],
"scripts": {
"clear": "rm -rf ./node_modules **/node_modules",
"build": "yarn workspace redoox run build",
"start": "yarn workspace @redoox/example run start"
},
"devDependencies": {
"@types/node": "11.9.4",
"@types/react": "16.8.3",
"@types/react-dom": "16.8.1",
"@types/redux-actions": "^2.3.2",
"immer": "^2.0.0",
"prettier": "1.16.3",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-scripts": "2.1.5",
"redux": "^4.0.1",
"redux-actions": "^2.6.4",
"reselect": "^4.0.0",
"tslint": "^5.12.1",
"tslint-react": "^3.6.0",
"typescript": "3.3.3"
}
}