-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
64 lines (64 loc) · 1.69 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
{
"name": "react-babel-webpack",
"version": "1.0.0",
"description": "React Babel Webpack Demo App",
"author": "arcseldon",
"main": "",
"scripts": {
"build": "webpack --progress --profile --colors",
"lint": "eslint --quiet --config=./.eslintrc --ext .jsx --ext .js src/**/**",
"start": "webpack-dev-server --quiet --info false --profile --colors --hot",
"startLocal": "./node_modules/.bin/webpack-dev-server --quiet --info false --profile --colors --hot"
},
"repository": {
"type": "git",
"url": "https://github.com/arcseldon/react-babel-webpack-starter-app.git"
},
"keywords": [
"React",
"Webpack",
"Babel",
"Demo"
],
"author": "Carr Seldon",
"license": "MIT",
"babel": {
"optional": [
"es7.functionBind",
"es7.classProperties",
"es7.decorators"
]
},
"dependencies": {
"babel-polyfill": "^6.3.14",
"bootstrap": "^3.3.5",
"flux": "^2.0.3",
"jquery": "^2.1.4",
"lodash": "3.10.1",
"node-uuid": "^1.4.7",
"react": "^0.13.3",
"react-router": "^0.13.3",
"sorted-object": "^1.0.0",
"toastr": "^2.1.2"
},
"devDependencies": {
"babel-core": "^5.5.8",
"babel-eslint": "^4.1.6",
"babel-loader": "^5.1.4",
"copy-webpack-plugin": "^0.3.3",
"css-loader": "^0.19.0",
"eslint": "^1.10.3",
"eslint-loader": "^1.1.1",
"eslint-plugin-react": "^3.11.3",
"extract-text-webpack-plugin": "^0.9.1",
"file-loader": "^0.8.4",
"imports-loader": "^0.6.5",
"node-sass": "^3.4.2",
"react-hot-loader": "^1.2.7",
"sass-loader": "^3.1.2",
"style-loader": "^0.12.4",
"url-loader": "^0.5.6",
"webpack": "^1.9.11",
"webpack-dev-server": "^1.9.0"
}
}