-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.76 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
{
"name": "react-webpack-scss-quickstart",
"version": "0.0.1",
"description": "A minimal, cross-platform web application with React and Webpack. ES6/ES2015 support using Babel. SCSS support using PostCss.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/jogleasonjr/react-webpack-scss-quickstart"
},
"scripts": {
"start": "./node_modules/.bin/webpack-dev-server --port 8182",
"build": "./node_modules/.bin/webpack -p",
"deploy": "webpack && cp dist/* \\\\20.20.20.31\\c$\\tfx",
"test": "jest"
},
"author": "",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.3.3",
"babel-core": "^6.5.2",
"babel-eslint": "^6.0.0-beta.6",
"babel-loader": "^6.2.2",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "^2.4.0",
"eslint-loader": "^1.2.1",
"file-loader": "^0.8.5",
"font-awesome": "^4.5.0",
"html-webpack-plugin": "2.10.0",
"node-sass": "3.4.2",
"postcss-import": "^8.0.2",
"postcss-loader": "0.8.2",
"postcss-url": "^5.1.1",
"precss": "^1.4.0",
"redux-devtools": "^3.1.1",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.0",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"bootstrap": "^3.3.6",
"es6-promise": "^3.1.2",
"isomorphic-fetch": "^2.2.1",
"react": "^15.0.1",
"react-bootstrap": "^0.29.2",
"react-dom": "^15.0.1",
"react-redux": "^4.4.1",
"react-router": "^2.0.1",
"react-router-bootstrap": "^0.20.1",
"redux": "^3.3.1",
"redux-form": "^4.2.2",
"redux-thunk": "^2.0.1",
"url-loader": "^0.5.7"
}
}