-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·32 lines (32 loc) · 894 Bytes
/
package.json
File metadata and controls
executable file
·32 lines (32 loc) · 894 Bytes
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
{
"name": "reactfromscratch",
"version": "0.1.1",
"description": "A React Site Base Structure to build up from",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"dev": "webpack-dev-server --port 3000 --watch --colors --hot"
},
"author": "James Wake <sparkx120@sparkx120.com> (http://sparkx120.com)",
"repository": {
"type": "git",
"url":"git@github.com:Sparkx120/reactfromscratch.git"
},
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.3.14",
"history": "^1.17.0",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-router": "^1.0.3"
},
"devDependencies": {
"babel-core": "^6.4.5",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"webpack": "^1.12.12",
"webpack-dev-server": "^1.14.1"
}
}