-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.3 KB
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-quiz-matchable",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --progress --config webpack.dev.config.js",
"db": "node mock_api/dbBuilder.js > mock_api/db.json && json-server mock_api/db.json --port 5555",
"build": "webpack -p --progress --config webpack.prod.config.js"
},
"author": "Andy Bangs <andrew.yuta@gmail.com>",
"license": "MIT",
"babel": {
"presets": [
"stage-2",
"es2015",
"react"
]
},
"devDependencies": {
"babel-core": "^6.5.2",
"babel-loader": "^6.2.3",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^4.0.0",
"eslint-plugin-react": "^4.0.0",
"json-server": "^0.8.8",
"react-hot-loader": "^1.3.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"babel-polyfill": "^6.5.0",
"history": "^2.0.0",
"isomorphic-fetch": "^2.2.1",
"lodash-es": "^4.5.1",
"radium": "^0.16.6",
"react": "^0.14.7",
"react-addons-css-transition-group": "^0.14.7",
"react-dom": "^0.14.7",
"react-redux": "^4.4.0",
"react-router": "^2.0.0",
"redux": "^3.3.1",
"redux-saga": "^0.9.1"
}
}