-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.32 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
{
"name": "react-sync-tools",
"version": "0.0.1",
"main": "index.js",
"license": "MIT",
"author": "Andrej Ocenas <[email protected]>",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"example": "parcel examples/todoApp/index.html"
},
"dependencies": {
"lodash": "^4.17.11"
},
"peerDependencies": {
"axios": ">=0.16.0",
"prop-types": ">=15",
"react": ">=15",
"react-redux": ">=5.0.0",
"redux": ">=4.0.0",
"redux-thunk": ">=2.0.0"
},
"devDependencies": {
"@types/enzyme": "^3.1.14",
"@types/jest": "^23.3.9",
"@types/lodash": "^4.14.118",
"@types/react": "^16.7.6",
"@types/react-dom": "^16.0.9",
"@types/react-redux": "^6.0.9",
"axios": "^0.18.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"jest": "^23.6.0",
"parcel": "^1.10.3",
"prettier": "^1.14.3",
"prop-types": "^15.6.2",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-redux": "^5.1.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"typescript": "^3.2.2"
},
"files": [
"/build/index.js",
"/build/model.js",
"/build/model-redux.js",
"/build/onChange.js",
"/build/propTypes.js",
"/build/utils.js",
"/build/withActions.js"
]
}