-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
93 lines (93 loc) · 2.84 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
{
"name": "transcend",
"version": "1.0.0",
"description": "A social and educational VR environment.",
"main": "server/index.js",
"scripts": {
"build": "webpack",
"build-watch": "webpack -w",
"seed": "node db/seed.js",
"server": "nodemon server/index.js",
"start": "webpack && nodemon server/index.js",
"test": "cross-env NODE_ENV=testing mocha --compilers js:babel-register browser/**/*.test.js browser/**/*.test.jsx db/**/*.test.js server/**/*.test.js",
"test-watch": "cross-env NODE_ENV=testing mocha --compilers js:babel-register --watch browser/**/*.test.js browser/**/*.test.jsx db/**/*.test.js server/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TranscendVR/transcend.git"
},
"keywords": [
"social",
"vr"
],
"author": "Joey Darbyshire, Sean McBride, Yoo-Nah Park, Beth Qiang",
"license": "MIT",
"bugs": {
"url": "https://github.com/TranscendVR/transcend/issues"
},
"homepage": "https://github.com/TranscendVR/transcend#readme",
"dependencies": {
"aframe": "^0.4.0",
"aframe-gif-shader": "^0.2.0",
"aframe-text-component": "^0.4.2",
"axios": "^0.15.3",
"babel": "^6.5.2",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-syntax-decorators": "^6.13.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"bcryptjs": "^2.4.0",
"body-parser": "^1.16.0",
"chalk": "^1.1.3",
"cookie-session": "^2.0.0-alpha.2",
"cross-env": "^3.1.4",
"debug": "^2.6.0",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"font-awesome": "^4.7.0",
"immutable": "^3.8.1",
"material-ui": "^0.16.7",
"nodemon": "^1.11.0",
"passport": "^0.3.2",
"passport-google-oauth": "^1.0.0",
"passport-local": "^1.0.0",
"pg": "^6.1.2",
"pg-native": "^1.10.0",
"radium": "^0.18.1",
"randomcolor": "^0.4.4",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"react-router": "^3.0.2",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-thunk": "^2.2.0",
"sequelize": "^3.29.0",
"socket.io": "^1.7.2",
"socket.io-client": "^1.7.2",
"webpack": "^1.14.0"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"chai-immutable": "^1.6.0",
"enzyme": "^2.7.1",
"esl": "^5.2.2",
"eslint": "^3.14.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.9.0",
"eslint-plugin-standard": "^2.0.1",
"mocha": "^3.2.0",
"morgan": "^1.7.0",
"react-addons-test-utils": "^15.4.2",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"supertest": "^2.0.1",
"supertest-as-promised": "^4.0.2"
}
}