-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.72 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
{
"name": "ghost-in-the-express",
"version": "1.0.0",
"description": "Spooky screen animation sequence with Ghost in The Shell theme (synced on all connected monitors)",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development node server.js",
"startwatch": "webpack-dev-server --hot --config webpack.config.js --inline --progress --profile --colors --watch --display-error-details --display-cached --content-base build/",
"build": "webpack",
"build:watch": "webpack --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/dxn7335/ghost-in-the-express.git"
},
"author": "Danny Nguyen",
"license": "ISC",
"bugs": {
"url": "https://github.com/dxn7335/ghost-in-the-express/issues"
},
"homepage": "https://github.com/dxn7335/ghost-in-the-express#readme",
"dependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.16.0",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"css-loader": "^0.24.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.22.0",
"lodash": "^4.16.4",
"node-sass": "^3.8.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"sass-loader": "^4.0.0",
"socket.io": "^1.5.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2"
},
"devDependencies": {
"json-loader": "^0.5.4",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.0"
}
}