forked from floptheworld/FlopTheWorld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.03 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
{
"name": "flop-the-world",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "node build/server.js",
"develop": "webpack --mode=development -w",
"build": "webpack --mode=production",
"build:dev": "webpack --mode=development",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test": "mocha -r ts-node/register test/test.ts"
},
"author": "Zack Arnett",
"license": "ISC",
"dependencies": {
"@types/bcrypt": "^3.0.0",
"axios": "^0.19.0",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-session": "^1.16.2",
"lit-element": "^2.2.0",
"lit-html": "^1.1.0",
"mysql": "^2.17.1",
"mysql2": "^1.6.5",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pokersolver": "^2.1.3",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.19.6",
"session-file-store": "^1.3.1",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"typeorm": "^0.2.18",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/assert": "^1.4.2",
"@types/es6-shim": "^0.31.39",
"@types/express": "^4.17.0",
"@types/express-session": "^1.15.13",
"@types/jest": "^24.0.15",
"@types/lodash": "^4.14.134",
"@types/mocha": "^5.2.7",
"@types/mysql": "^2.15.6",
"@types/passport": "^1.0.0",
"@types/passport-local": "^1.0.33",
"@types/session-file-store": "^1.2.0",
"@types/socket.io": "^2.1.2",
"@types/socket.io-client": "^1.4.32",
"@types/uuid": "^3.4.4",
"@webcomponents/webcomponentsjs": "^2.2.10",
"copy-webpack-plugin": "^5.1.1",
"html-webpack-plugin": "^3.2.0",
"lodash": "^4.17.15",
"mocha": "^6.1.4",
"prettier": "^1.18.2",
"ts-loader": "^6.0.3",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.5.2",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4"
},
"prettier": {
"trailingComma": "es5",
"arrowParens": "always"
}
}