-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "reactlite-starter-kit",
"description": "ReactLite Starter Kit with React & Redux!",
"version": "0.1.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/kelvinmijaya/reactlite-starter-kit.git"
},
"author": "Kelvin Mijaya",
"license": "MIT",
"devDependencies": {
"enzyme": "^2.5.1",
"react-addons-test-utils": "^15.3.2",
"react-scripts": "^0.6.0",
"redux-devtools": "^3.3.1",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.0.11",
"redux-logger": "^2.6.1",
"redux-mock-store": "^1.2.1"
},
"dependencies": {
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-redux": "^4.4.5",
"react-router": "^2.6.1",
"react-router-redux": "^4.0.5",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"lint": "react-scripts eslint .",
"test": "react-scripts test --env=jsdom"
}
}