forked from uidotdev/react-course-curriculum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.07 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
{
"name": "react-fundamentals-curriculum",
"version": "1.0.0",
"description": "Curriculum for React.js Program's React Fundamentals course.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"production": "webpack -p",
"start": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ReactjsProgram/react-fundamentals-curriculum.git"
},
"author": "Tyler McGinnis <tylermcginnis33@gmail.com> (http://tylermcginnis.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/ReactjsProgram/react-fundamentals-curriculum/issues"
},
"homepage": "https://github.com/ReactjsProgram/react-fundamentals-curriculum#readme",
"dependencies": {
"axios": "^0.15.2",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-router": "^2.8.1"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-preset-react": "^6.16.0",
"html-webpack-plugin": "^2.22.0",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2"
}
}