-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.21 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "WebRTC-simple-chat",
"version": "0.0.1",
"private": true,
"description": "WebRTC simple chat application",
"main": "index.js",
"author": "Victor Pongnian",
"engines": {
"node": "4.4.x",
"npm": "3.10.x"
},
"scripts": {
"heroku-prebuild": "echo 'This runs before Heroku installs your dependencies.'",
"dev-server": "./node_modules/.bin/gulp serve",
"build-server": "./node_modules/.bin/gulp build",
"dev-client": "./node_modules/.bin/webpack-dev-server --progress --profile --colors",
"build-client": "./node_modules/.bin/webpack --config webpack.production.config.js --progress --profile --colors",
"build": "npm run build-server && npm run build-client",
"start": "./node_modules/.bin/gulp serve:dist",
"test": "./node_modules/.bin/gulp tests:server",
"lint": "./node_modules/.bin/eslint --ext js --ext jsx src",
"postinstall": "./init_env.sh"
},
"dependencies": {
"babel-runtime": "^6.11.6",
"babel-register": "^6.6.5",
"babel-core": "^6.6.5",
"babel-cli": "^6.3.15",
"compression": "^1.6.2",
"dotenv-safe": "^2.3.1",
"errorhandler": "^1.4.3",
"express": "^4.14.0",
"lodash": "^3.10.1",
"ws": "1.1.x"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.3.13",
"babel-preset-stage-1": "^6.16.0",
"bootstrap": "^3.3.7",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"chai-things": "^0.2.0",
"connect-livereload": "^0.5.3",
"coveralls": "^2.11.11",
"css-loader": "^0.25.0",
"del": "^2.0.2",
"dirty-chai": "^1.2.2",
"eslint": "^3.6.0",
"eslint-config-defaults": "^9.0.0",
"eslint-config-standard": "^6.0.1",
"eslint-plugin-filenames": "^1.1.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-mocha": "^4.5.1",
"eslint-plugin-node": "2.0.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-react": "^6.3.0",
"eslint-plugin-standard": "^2.0.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-env": "^0.4.0",
"gulp-eslint": "3.0.1",
"gulp-istanbul": "~0.10.3",
"gulp-istanbul-enforcer": "^1.0.3",
"gulp-livereload": "^3.8.1",
"gulp-load-plugins": "^1.0.0-rc.1",
"gulp-mocha": "^2.1.3",
"gulp-plumber": "^1.1.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.9",
"html-webpack-plugin": "^2.22.0",
"isparta": "^4.0.0",
"istanbul": "^1.1.0-alpha.1",
"lazypipe": "^1.0.1",
"mocha": "*",
"node-sass": "^3.10.0",
"nodemon": "^1.10.2",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-hot-loader": "^3.0.0-beta.5",
"run-sequence": "^1.1.0",
"sass-loader": "^4.0.2",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.12.9",
"webpack-cleanup-plugin": "^0.3.0",
"webpack-dev-server": "^1.15.0"
}
}