forked from ReactTraining/classic-react-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.29 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
83
84
85
86
87
88
89
{
"name": "react-subjects",
"private": true,
"version": "1.0.0",
"description": "Course material for http://reactjs-training.com",
"authors": [
"Ryan Florence",
"Michael Jackson"
],
"license": "GPLv3",
"main": "index.js",
"scripts": {
"start": "node ./scripts/build-index.js && webpack-dev-server --inline --content-base subjects",
"lint": "eslint subjects/**/*.js",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/ReactJSTraining/react-subjects.git"
},
"dependencies": {
"angular": "1.4.9",
"assert": "1.3.0",
"axios": "^0.5.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-assign": "^6.5.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"backbone": "^1.2.3",
"bootstrap": "^3.3.4",
"bootstrap-webpack": "0.0.3",
"css-loader": "^0.10.1",
"events": "^1.0.2",
"expect": "^1.13.4",
"expose-loader": "^0.6.0",
"file-loader": "^0.8.4",
"firebase": "^2.2.7",
"flux": "^2.0.1",
"form-serialize": "0.7.0",
"immstruct": "^1.4.1",
"immutable": "^3.7.3",
"imports-loader": "0.6.5",
"invariant": "^2.1.0",
"jquery": "^2.1.3",
"jsonp": "0.2.0",
"key-mirror": "^1.0.1",
"md5": "2.0.0",
"mkdirp": "^0.5.0",
"mocha": "2.3.4",
"purecss": "0.6.0",
"react": "^0.14.7",
"react-addons-css-transition-group": "0.14.7",
"react-addons-perf": "0.14.3",
"react-addons-test-utils": "0.14.3",
"react-addons-transition-group": "^0.14.3",
"react-dom": "^0.14.2",
"react-motion": "^0.4.2",
"react-redux": "4.0.0",
"react-router": "^2.0.0-rc4",
"react-tween-state": "0.0.5",
"redux": "3.0.4",
"redux-logger": "2.2.1",
"redux-thunk": "1.0.0",
"sort-by": "^1.1.0",
"style-loader": "^0.12.3",
"supervisor": "^0.9.1",
"underscore": "^1.8.3",
"url-loader": "^0.5.6",
"webpack": "^1.7.3",
"webpack-dev-server": "^1.8.0"
},
"devDependencies": {
"babel-eslint": "^5.0.0",
"eslint": "2.2.x",
"eslint-config-airbnb": "6.1.0",
"eslint-plugin-react": "^4.2.3"
},
"babel": {
"presets": [
"es2015",
"stage-1",
"react"
],
"plugins": [
"transform-object-assign"
]
}
}