-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.93 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.93 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
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
{
"name": "socketquizgames",
"description": "A real-time device-independent question and answer framework",
"version": "0.0.0",
"homepage": "http://quiz.mtdoyle.com",
"main": "src/",
"keywords": [],
"license": "MIT",
"repository": {},
"author": "Michael Doyle",
"contributors": [],
"engines": {
"node": "8.11.2"
},
"nodemonConfig": {
"ignore": [
"js/*",
"public/*"
]
},
"scripts": {
"postinstall": "grunt production",
"test": "npm run jshint && npm run mocha",
"jshint": "jshint src/. test/. --config",
"start": "node index.js",
"start:dev": "concurrently \"nodemon index.js\" \"grunt watch\"",
"mocha": "mocha test/ --recursive"
},
"dependencies": {
"@fortawesome/fontawesome": "^1.1.5",
"@fortawesome/fontawesome-free-solid": "^5.0.10",
"@fortawesome/react-fontawesome": "0.0.18",
"accounting": "^0.4.1",
"axios": "^0.17.1",
"babel-eslint": "^6.1.2",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.24.1",
"babelify": "^7.3.0",
"body-parser": "^1.15.2",
"brfs": "^2.0.1",
"browserify": "^16.2.3",
"browserify-fs": "^1.0.0",
"bufferutil": "^1.2.1",
"compression": "^1.6.2",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"cors": "^2.7.1",
"envify": "^4.1.0",
"eslint": "^3.19.0",
"eslint-plugin-babel": "^4.1.1",
"express": "^4.16.2",
"express-session": "^1.14.2",
"express-validator": "^5.3.0",
"fs": "0.0.1-security",
"getbase": "^3.1.5",
"grunt": "^1.0.4",
"grunt-browserify": "^5.3.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-jshint": "^2.0.0",
"grunt-contrib-nodeunit": "^2.0.0",
"grunt-contrib-uglify": "^4.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-env": "^0.4.4",
"grunt-newer": "^1.2.0",
"grunt-sass": "^2.0.0",
"jquery": "^3.4.1",
"konva": "^3.2.6",
"matter-js": "^0.12.0",
"nedb": "^1.8.0",
"passport": "^0.3.2",
"pg": "^7.4.3",
"pg-connection-string": "^0.1.3",
"poly-decomp": "^0.2.1",
"prop-types": "^15.6.0",
"react": "~16.8.0",
"react-css-transition-replace": "^2.2.0",
"react-dimensions": "^1.3.0",
"react-dom": "~16.8.0",
"react-icons": "^2.2.7",
"react-keydown": "^1.6.5",
"react-konva": "^16.8.6",
"react-motion": "^0.5.2",
"react-scale-text": "^1.1.2",
"react-sound": "^0.5.2",
"react-transition-group": "^2.2.1",
"request": "^2.87.0",
"serve-favicon": "^2.3.0",
"shell-quote": "^1.6.1",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"soundmanager2": "^2.97.20150601-a",
"textfit": "^2.3.1",
"uglifyify": "^5.0.1",
"winston": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"concurrently": "^3.6.0",
"eslint-plugin-react": "^7.7.0",
"jshint": "^2.9.6",
"mocha": "^5.2.0",
"nodemon": "^1.18.2"
}
}