-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.29 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
65
66
67
68
69
70
71
72
73
{
"name": "visualbaram-webpack",
"version": "1.0.0",
"description": "",
"main": "web/main.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:dev": "webpack-dev-server --port 5000 --inline --content-base web/ --history-api-fallback",
"start:prod": "npm run build && node server.bundle.js",
"build:client": "./node_modules/.bin/webpack",
"build:server": "./node_modules/.bin/webpack --config webpack.server.config.js",
"build": "npm run build:client && npm run build:server",
"lint": "./node_modules/.bin/eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/quisa137/visualbaram-webpack.git"
},
"author": "ShinGu Park",
"license": "MIT",
"bugs": {
"url": "https://github.com/quisa137/visualbaram-webpack/issues"
},
"homepage": "https://github.com/quisa137/visualbaram-webpack",
"dependencies": {
"async": "^2.0.0-rc.3",
"autoprefixer": "^6.3.6",
"babel-runtime": "^6.6.1",
"bluebird": "^3.3.5",
"bootstrap": "^3.3.6",
"bootstrap-webpack": "0.0.5",
"css-loader": "^0.23.1",
"d3": "^3.5.16",
"d3-tip": "^0.6.7",
"exports-loader": "^0.6.3",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"imports-loader": "^0.6.5",
"jquery": ">=3.0.0",
"json-loader": "^0.5.4",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"lodash": "^4.11.1",
"moment": "^2.13.0",
"moment-timezone": "^0.5.3",
"node-sass": "^3.7.0",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-router": "^2.4.0",
"redux": "^3.5.2",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.9.0",
"eslint-plugin-react": "^5.0.1",
"html-webpack-plugin": "^2.16.1",
"react-transform-hmr": "^1.0.4",
"webpack": ">=4.0.0",
"webpack-dev-server": ">=3.1.11"
}
}