This repository has been archived by the owner on Jan 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.54 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
{
"name": "webpack-bits-basic",
"version": "1.0.0",
"description": "Compile JS and SCSS with minifying and uglifying",
"main": "webpack.config.js",
"scripts": {
"build": "cd ./config; NODE_ENV=production ../node_modules/.bin/webpack --progress && node version.js",
"start": "NODE_ENV=development node ./config/webpack.server.js",
"deploy": "npm run build && scp -r dist/* [email protected]:/www/dashboard"
},
"author": "Andrei Zvonimir Crnkovic <[email protected]> & Stjepan Petrusa <[email protected]>",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-core": "^6.7.6",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-3": "^6.5.0",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^2.17.0",
"json-loader": "^0.5.4",
"node-sass": "^3.4.2",
"postcss-loader": "^0.8.2",
"resolve-url-loader": "^1.4.3",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"webpack": "^1.12.15",
"webpack-dev-server": "^1.14.1"
},
"engines": {
"npm": "3.x.x",
"node": "5.x.x"
},
"dependencies": {
"babel-polyfill": "^6.16.0",
"chart.js": "^1.1.1",
"classnames": "^2.2.5",
"lodash": "^4.15.0",
"moment": "^2.14.1",
"moment-timezone": "^0.5.5",
"normalize.css": "^4.2.0",
"react": "^15.3.1",
"react-chartist": "^0.10.2",
"react-dom": "^15.3.1",
"whatwg-fetch": "^1.0.0"
}
}