This repository was archived by the owner on Apr 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.96 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.96 KB
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": "chatr",
"version": "1.0.0",
"description": "The first CSC Project Series project. A Chat program to teach the basics of networking",
"main": "config.js",
"scripts": {
"test": "gulp && mocha -u tdd --compilers js:babel-core/register --require ./test/test_helper.js --recursive ./test",
"prestart": "gulp",
"start": "babel-node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BrockCSC/Chatr.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/BrockCSC/Chatr/issues"
},
"homepage": "https://github.com/BrockCSC/Chatr#readme",
"dependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.6.5",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"babel-core": "^6.7.2",
"babel-polyfill": "^6.6.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"express": "^4.13.4",
"jade": "^1.11.0",
"js-beautify": "^1.6.2",
"object-assign": "^4.0.1",
"babel": "^6.5.2",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"gulp": "^3.9.1",
"gulp-size": "^2.1.0",
"gulp-streamify": "^1.0.2",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.7",
"babel-polyfill": "^6.6.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"react": "^0.14.7",
"react-dom": "^0.14.8",
"reactify": "^1.1.1",
"socket.io": "^1.4.5",
"socket.io-client": "^1.4.5",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"devDependencies": {
"assert": "^1.3.0",
"chai": "^3.5.0",
"chai-jquery": "^2.0.0",
"jquery": "^2.2.2",
"jsdom": "^8.1.0",
"json5": "^0.5.0",
"mocha": "^2.4.5",
"react-addons-test-utils": "^0.14.7",
"supertest": "^1.2.0"
}
}