-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.89 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.89 KB
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
74
{
"name": "starter-webpack",
"version": "1.0.0",
"description": "a project starter with webpack",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack -p --progress --colors",
"start": "webpack-dev-server --hot --inline -d --progress --colors",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Alexandre Toudic, Jeremie Drazic, Robin Delaporte",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.3.5",
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.6.1",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"json-loader": "^0.5.4",
"node-sass": "^3.4.2",
"postcss": "^5.0.19",
"postcss-loader": "^0.8.2",
"raw-loader": "^0.5.1",
"sass-loader": "^3.2.0",
"shader-loader": "^1.1.4",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"chirashi": "^3.0.6",
"chirashi-slider": "^1.6.0",
"gsap": "^1.18.2",
"install": "^0.8.1",
"lodash.foreach": "^4.2.0",
"npm": "^3.9.5",
"pixi.js": "^3.0.11",
"raf": "^3.2.0",
"socket.io": "^1.4.5",
"socket.io-client": "^1.4.5",
"vue": "^1.0.20",
"vue-resource": "^0.7.0",
"vue-router": "^0.7.11"
},
"config": {
"root": "./src",
"entry": "./src/main.js",
"output": {
"path": "./dist",
"publicPath": "/",
"filename": "bundle.js"
},
"devServer": {
"contentBase": "./dist",
"publicPath": "/",
"filename": "bundle.js",
"historyApiFallback": true,
"host": "0.0.0.0",
"port": 8008
},
"cssFile": "bundle.css"
},
"autoprefixer": {
"browsers": [
"last 2 versions"
],
"remove": false
}
}