-
Notifications
You must be signed in to change notification settings - Fork 334
/
package.json
79 lines (79 loc) · 2.15 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
74
75
76
77
78
79
{
"name": "filepizza",
"version": "1.1.0",
"description": "Free peer-to-peer file transfers in your browser.",
"preferGlobal": "true",
"bin": "./dist/index.js",
"author": "Alex Kern <[email protected]> (http://kern.io)",
"license": "BSD-3-Clause",
"homepage": "https://github.com/kern/filepizza",
"scripts": {
"start": "babel-node ./src/index.js",
"start:prod": "node ./dist/index.js",
"prepublishOnly": "npm run build",
"build": "babel src --ignore __tests__,__mocks__ --out-dir dist && webpack -p ./src/client && rm -rf dist/static && cp -R src/static dist/static"
},
"repository": {
"type": "git",
"url": "[email protected]:kern/filepizza.git"
},
"bugs": {
"url": "https://github.com/kern/filepizza/issues"
},
"engines": {
"node": ">= 5.0.0",
"npm": ">= 3.3.0"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"add-module-exports",
"transform-react-jsx"
]
},
"dependencies": {
"alt": "^0.14.4",
"classnames": "^1.2.0",
"express": "^4.12.0",
"express-force-ssl": "^0.3.1",
"express-winston": "^0.3.1",
"filepizza-socket": "^1.0.0",
"newrelic": "^1.21.1",
"nib": "^1.1.0",
"node-uuid": "^1.4.3",
"nodemon": "^1.4.1",
"react": "^0.13.0",
"react-frozenhead": "^0.3.0",
"react-google-analytics": "^0.2.0",
"react-qr": "0.0.2",
"react-router": "^0.13.1",
"socket.io": "^1.3.5",
"socket.io-client": "^1.3.5",
"stylus": "^0.52.4",
"twilio": "^2.9.1",
"webrtcsupport": "^2.2.0",
"winston": "^1.0.1",
"xkcd-password": "^1.2.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-react-jsx": "^6.7.4",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.16.0",
"css-loader": "^0.28.4",
"json-loader": "^0.5.4",
"noop-loader": "^1.0.0",
"null-loader": "^0.1.1",
"style-loader": "^0.18.2",
"stylus-loader": "^3.0.1",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.6.1"
}
}