-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 967 Bytes
/
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
{
"name": "pairing-passenger",
"version": "1.0.1",
"description": "",
"main": "server.js",
"scripts": {
"build": "NODE_ENV=production webpack",
"dev": "NODE_ENV=development webpack-dev-server --hot --inline",
"prepublish": "npm run build"
},
"bin": {
"passenger": "server.js"
},
"author": "[email protected]",
"repository": {
"type": "git",
"url": "[email protected]:Prismatik/passenger.git"
},
"license": "ISC",
"dependencies": {
"chokidar": "^1.4.3",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"socket.io": "^1.4.5",
"socket.io-client": "^1.4.5"
},
"devDependencies": {
"babel-core": "^6.7.6",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"file-loader": "^0.8.5",
"react-hot-loader": "^1.3.0",
"webpack": "^1.12.15",
"webpack-dev-server": "^1.14.1"
}
}