-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.43 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
{
"name": "calcumon",
"version": "1.0.0",
"description": "Calcumon is a web-based game involving a virtual world with mini-math games/activities. The game can be played after a simple signup to setup your game user. It consists of multiple levels of calcumon battles against opponents. Attacks can be used through tokens, and players earn tokens via completing math problems within the game.",
"engines": {
"node": "8.9.0"
},
"main": "server.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "node server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Coswold/Calcumon.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Coswold/Calcumon/issues"
},
"homepage": "https://github.com/Coswold/Calcumon#readme",
"dependencies": {
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"bootstrap": "^4.3.1",
"canvas": "^2.4.1",
"cookie-parser": "^1.4.4",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-handlebars": "^3.0.2",
"express-validator": "^5.3.1",
"handlebars": "^4.1.1",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"mongoose": "^5.4.19",
"nodemon": "^1.18.10",
"socket.io": "^2.2.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"mocha": "^5.2.0"
}
}