-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.23 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
{
"name": "resit",
"version": "1.0.0",
"description": "Sample application of React + Redux + Firebase",
"scripts": {
"start": "node server.js",
"clean": "rm -rf dist",
"build": "webpack -p --config webpack.production.config.js",
"build-prod": "npm run clean && npm run build",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "https://github.com/yang-wei/resit.git"
},
"keywords": [
"react",
"reactjs",
"hot",
"reload",
"live",
"resit"
],
"author": "Lim Yang Wei <[email protected]> (http://github.com/yang-wei)",
"license": "MIT",
"homepage": "http://yang-wei.github.io/resit",
"devDependencies": {
"babel-core": "^5.4.7",
"babel-eslint": "^3.1.9",
"babel-loader": "^5.1.2",
"eslint-plugin-react": "^2.3.0",
"react-hot-loader": "^1.2.7",
"webpack": "^1.9.6",
"webpack-dev-server": "^1.8.2"
},
"dependencies": {
"firebase": "^2.2.9",
"material-ui": "^0.10.4",
"object-assign": "^3.0.0",
"react": "^0.13.3",
"react-dnd": "^1.1.4",
"react-modal": "^0.3.0",
"react-redux": "^0.8.2",
"react-tap-event-plugin": "^0.1.7",
"redux": "^1.0.0",
"redux-logger": "0.0.3",
"redux-thunk": "^0.1.0"
}
}