-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
80 lines (80 loc) · 2.85 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
{
"name": "openwerewolf",
"version": "0.0.0",
"description": "An open source, online multiplayer werewolf game.",
"main": "app.js",
"dependencies": {
"@types/jquery": "^3.3.29",
"@types/node": "^9.6.35",
"@types/pixi.js": "^4.8.6",
"@types/react": "^16.7.20",
"@types/react-dom": "^16.0.11",
"@types/semantic-ui": "^2.2.6",
"@types/simplebar": "^2.4.1",
"@types/socket.io": "^1.4.40",
"@types/socket.io-client": "^1.4.32",
"@types/webfontloader": "^1.6.29",
"bcrypt": "^3.0.2",
"connect-redis": "^3.4.0",
"csstype": "^2.6.1",
"express": "^4.16.4",
"express-session": "^1.15.6",
"grawlix": "^1.0.6",
"mysql": "^2.16.0",
"nodemailer": "^4.6.8",
"pixi.js": "^4.8.5",
"pug": "^2.0.3",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"redis": "^2.8.0",
"redis-server": "^1.2.2",
"selenium-webdriver": "^3.6.0",
"semantic-ui": "^2.4.2",
"simplebar": "^3.0.0-beta.5",
"socket.io": "^2.1.1",
"systemjs": "^3.0.0",
"ts-loader": "^5.3.3",
"typescript": "^3.2.2",
"webfontloader": "^1.6.28",
"webpack": "^4.29.0"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"jest": "^24.7.1",
"mocha": "^5.2.0",
"ts-jest": "^24.0.1",
"webpack-cli": "^3.3.0"
},
"scripts": {
"test": "jest --silent --verbose",
"watch:debug": "tsc \n webpack --watch & \n tsc --watch & \n sass --watch client/css/main.scss:client/css/main.css & \n nodemon app.js debug",
"watch": "tsc \n webpack --watch & \n tsc --watch & \n sass --watch client/css/main.scss:client/css/main.css & \n nodemon app.js",
"watch:database": "tsc \n webpack --watch & \n tsc --watch & \n sass --watch client/css/main.scss:client/css/main.css & \n nodemon app.js database",
"builddocs": "typedoc --out docs --mode 'file' --excludeExternals --externalPattern \"**/node_modules/**\" --ignoreCompilerErrors ../OpenWerewolf/Core --target es6 --theme default --readme none \n touch docs/.nojekyll",
"build": "tsc \n webpack \n sass client/css/main.scss client/css/main.css",
"start": "echo \"*** Please 'npm run build' first if you haven't already!***\" \n node app.js",
"start:database": "echo \"*** Please 'npm run build' first if you haven't already!***\" \n node app.js database",
"start:debug": "echo \"*** Please 'npm run build' first if you haven't already!***\" \n node app.js debug"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JamesCraster/OpenWerewolf.git"
},
"keywords": [
"mafia",
"werewolves",
"multiplayer",
"online",
"game",
"party",
"deception",
"werewolf",
"detective"
],
"author": "James Vaughan Craster",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/JamesCraster/OpenWerewolf/issues"
},
"homepage": "https://github.com/JamesCraster/OpenWerewolf#readme"
}