forked from uidotdev/react-course-curriculum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.16 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
{
"name": "react-fundamentals-curriculum",
"version": "1.0.0",
"description": "Curriculum for React.js Program's React Fundamentals course.",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"prod": "webpack -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ReactjsProgram/react-fundamentals-curriculum.git"
},
"author": "Tyler McGinnis <[email protected]> (http://tylermcginnis.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ReactjsProgram/react-fundamentals-curriculum/issues"
},
"homepage": "http://courses.reactjsprogram.com/courses/reactjsfundamentals",
"dependencies": {
"axios": "^0.9.1",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-router": "^2.0.0"
},
"devDependencies": {
"babel-core": "^6.5.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"html-webpack-plugin": "^2.9.0",
"image-webpack-loader": "^1.8.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
}
}