-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
64 lines (64 loc) · 1.79 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
{
"name": "collaborative-code-conference",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/crcastle/collaborative-code-conference"
},
"main": "index.js",
"scripts": {
"start": "node build/server/index.js",
"start:dev": "parallelshell 'webpack-dev-server --content-base public --port=4444' 'node build/server/index.js'",
"test": "istanbul cover _mocha -- test",
"build:client": "webpack --progress -p",
"build:server": "babel src/server -d build/server",
"build": "npm run build:client && npm run build:server",
"build:dev": "parallelshell 'babel src/server -d build/server -w' 'webpack -p -w'"
},
"author": {
"name": "Chris Castle",
"email": "[email protected]",
"url": "https://crc.io"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"bootstrap.native": "^1.0.2",
"chai": "^3.5.0",
"codeclimate-test-reporter": "^0.3.1",
"codemirror": "^5.12.0",
"css-loader": "^0.23.1",
"dotenv": "^2.0.0",
"es6-promise": "^3.1.2",
"eslint": "^2.6.0",
"eslint-plugin-mocha": "^2.0.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"gulf-codemirror": "^4.0.2",
"html-loader": "^0.4.3",
"isomorphic-fetch": "^2.2.1",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"parallelshell": "^2.0.0",
"request": "^2.69.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.14"
},
"dependencies": {
"express": "4.14.0",
"gulf": "4.0.4",
"loglevel": "1.4.0",
"ot-text": "1.0.1",
"twilio": "3.2.0-edge",
"ws": "1.1.1"
},
"engines": {
"node": "5.10.1",
"npm": "3.8.3"
}
}