-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.31 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
{
"name": "react-playground",
"version": "1.0.0",
"description": "Playing around with react",
"main": "index.js",
"scripts": {
"webpack": "webpack",
"webpack:watch": "webpack --watch",
"webpack:production": "webpack --mode=production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ksstott/react-playground.git"
},
"keywords": [
"react"
],
"author": "Kelvin Stott",
"license": "ISC",
"bugs": {
"url": "https://github.com/ksstott/react-playground/issues"
},
"homepage": "https://github.com/ksstott/react-playground#readme",
"devDependencies": {
"@types/react-redux": "^6.0.6",
"@types/redux-immutable-state-invariant": "^2.0.4",
"@types/redux-thunk": "^2.1.0",
"awesome-typescript-loader": "^5.2.0",
"source-map-loader": "^0.2.4",
"typescript": "^3.0.1",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"@types/react": "^16.4.11",
"@types/react-dom": "^16.0.7",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.5",
"redux-immutable-state-invariant": "^2.1.0",
"redux-little-router": "^15.1.1",
"redux-request-loading": "^1.3.0",
"redux-thunk": "^2.3.0",
"semantic-ui-react": "^0.82.3"
}
}