This repository has been archived by the owner on Aug 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.53 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
77
78
79
80
81
82
{
"name": "kea-example",
"version": "0.0.1",
"description": "Kea example app",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "./node_modules/.bin/webpack-dev-server --history-api-fallback --hot --port 2000",
"build": "NODE_ENV=production ./node_modules/.bin/webpack --progress",
"prerender": "NODE_ENV=production node prerender.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keajs/kea-example.git"
},
"author": "Marius Andra",
"license": "MIT",
"bugs": {
"url": "https://github.com/keajs/kea-example/issues"
},
"homepage": "https://github.com/keajs/kea-example#readme",
"jest": {
"moduleNameMapper": {
"^~": "<rootDir>/app",
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/file-mock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/style-mock.js"
}
},
"dependencies": {
"babel-runtime": "^6.26.0",
"es6-promise": "^4.2.4",
"history": "^4.7.2",
"kea": "^0.27.8",
"kea-localstorage": "^0.2.0",
"kea-saga": "^0.3.2",
"nprogress": "^0.2.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"redux": "^3.7.2",
"redux-saga": "^0.16.0",
"reselect": "^3.0.1"
},
"devDependencies": {
"autoprefixer": "^7.2.5",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-react-transform": "^3.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"bundle-loader": "^0.5.5",
"css-loader": "^0.28.9",
"eslint": "^4.17.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.6.1",
"eslint-plugin-standard": "^3.0.1",
"file-loader": "^1.1.6",
"jest": "^22.1.4",
"postcss-loader": "^2.0.6",
"precss": "^2.0.0",
"react-hot-loader": "1.3.1",
"react-transform-hmr": "^1.0.4",
"redux-devtools": "^3.4.1",
"style-loader": "^0.20.1",
"url-loader": "^0.6.2",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1"
}
}