-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
124 lines (124 loc) · 3.73 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "builders-game",
"version": "1.0.0",
"description": "crusher app will crush!",
"private": true,
"main": "index.js",
"scripts": {
"start": "nodemon build/server/server.js",
"dev-server": "node devServer.js",
"build-server": "tsc --pretty",
"build-client": "webpack --config webpack.config.js",
"watch-server": "tsc --pretty -w",
"watch-client": "webpack --config webpack.config.js --watch",
"test": "karma start",
"lint-ts": "tslint src/**/*.ts*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hrr-19-crushers/builders-game.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Hrr-19-crushers/builders-game/issues"
},
"homepage": "https://github.com/Hrr-19-crushers/builders-game#readme",
"devDependencies": {
"@types/auth0-lock": "^10.0.21",
"@types/body-parser": "0.0.33",
"@types/chai": "^3.4.34",
"@types/express": "^4.0.33",
"@types/extract-text-webpack-plugin": "^2.0.0",
"@types/gulp": "^3.8.32",
"@types/gulp-concat": "0.0.29",
"@types/gulp-typescript": "0.0.32",
"@types/gulp-uglify": "0.0.29",
"@types/lodash": "^4.14.41",
"@types/mocha": "^2.2.32",
"@types/moment": "^2.13.0",
"@types/node": "^6.0.46",
"@types/node-sass": "^3.10.32",
"@types/react": "^0.14.46",
"@types/react-addons-test-utils": "^0.14.15",
"@types/react-dom": "^0.14.18",
"@types/react-redux": "^4.4.32",
"@types/react-router": "^2.0.39",
"@types/redux": "^3.6.31",
"@types/request": "0.0.33",
"@types/sinon": "^1.16.31",
"@types/socket.io": "^1.4.27",
"@types/socket.io-client": "^1.4.28",
"@types/webfontloader": "^1.6.27",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"chai": "^3.5.0",
"css-loader": "^0.26.0",
"eslint": "^3.9.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-react": "^6.6.0",
"extract-text-webpack-plugin": "^1.0.1",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-typescript": "^3.1.3",
"gulp-uglify": "^2.0.0",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sinon": "^1.0.5",
"karma-webpack": "^1.8.0",
"mocha": "^3.1.2",
"node-sass": "^3.13.0",
"phantomjs-polyfill-object-assign": "0.0.2",
"phantomjs-prebuilt": "^2.1.13",
"react-addons-test-utils": "^15.3.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "^4.4.6",
"sass-loader": "^4.0.2",
"sinon": "^1.17.6",
"style-loader": "^0.13.1",
"ts-loader": "^1.1.0",
"tslint": "^3.15.1",
"tslint-react": "^1.1.0",
"typescript": "^2.0.9",
"typescript-eslint-parser": "^0.4.0",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2",
"webpack-notifier": "^1.4.1",
"webpack-uglify-js-plugin": "^1.1.9"
},
"dependencies": {
"auth0-lock": "^10.6.1",
"body-parser": "^1.15.2",
"dotenv": "^2.0.0",
"emojione": "^2.2.6",
"emojione-picker": "^1.1.0",
"express": "^4.14.0",
"fs": "0.0.1-security",
"http": "0.0.0",
"json-loader": "^0.5.4",
"moment": "^2.16.0",
"path": "^0.12.7",
"phaser": "^2.6.2",
"phaser-shim": "^2.4.8",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-router": "^3.0.0",
"recharts": "^0.19.0",
"redis": "^2.6.3",
"redux": "^3.6.0",
"request": "^2.78.0",
"socket.io": "^1.5.1",
"socket.io-client": "^1.5.1",
"socket.io-parser": "^2.3.1",
"webfontloader": "^1.6.26",
"xmlhttprequest-ssl": "^1.5.3"
}
}