-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.37 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "example-custom-action-reducer",
"private": true,
"version": "0.0.0",
"description": "A Lore application",
"keywords": [],
"scripts": {
"build": "npm run clean && webpack --env=production",
"build:prod": "npm run clean && webpack --env=production -p",
"clean": "rimraf dist",
"server": "json-server --watch db.json --port=1337",
"start": "webpack-dev-server --history-api-fallback --hot --env=development --port=3000",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"axios": "^0.17.0",
"lodash": "^4.0.0",
"lore": "~0.12.0",
"lore-auth": "~0.12.0",
"lore-hook-actions": "~0.12.0",
"lore-hook-auth": "~0.12.0",
"lore-hook-bind-actions": "~0.12.0",
"lore-hook-collections": "~0.12.0",
"lore-hook-connect": "~0.12.0",
"lore-hook-connections": "~0.12.0",
"lore-hook-dialog": "~0.12.0",
"lore-hook-models": "~0.12.0",
"lore-hook-react": "~0.12.0",
"lore-hook-reducers": "~0.12.0",
"lore-hook-redux": "~0.12.0",
"lore-hook-router": "~0.12.0",
"lore-utils": "~0.12.0",
"react": "^15.4.0",
"react-dom": "^15.4.0",
"react-redux": "^4.4.1",
"react-router": "^3.0.0",
"redux": "^3.0.2",
"redux-batched-subscribe": "^0.1.6",
"redux-thunk": "^2.0.1",
"require-dir": "~0.3.0"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.2.1",
"babel-loader": "^6.2.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.2",
"extract-text-webpack-plugin": "^2.1.0",
"favicons-webpack-plugin": "~0.0.7",
"file-loader": "^0.10.1",
"gulp": "^3.9.1",
"html-webpack-plugin": "^2.28.0",
"json-loader": "^0.5.4",
"json-server": "^0.9.5",
"less": "2.5.1",
"less-loader": "^2.2.0",
"node-sass": "^4.1.1",
"postcss-loader": "^1.3.3",
"progress-bar-webpack-plugin": "^1.9.3",
"redux-devtools": "^3.0.0",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.2.0",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.3",
"style-loader": "^0.13.2",
"url-loader": "^0.5.8",
"webpack": "^2.2.1",
"webpack-config-utils": "^2.3.0",
"webpack-dev-server": "^2.4.1",
"webpack-manifest-plugin": "^1.1.0",
"yargs": "^4.7.1"
}
}