-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.23 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
{
"name": "battleships",
"main": "dist/index.js",
"version": "0.0.1",
"author": "Unità Dei Mandrilli",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"bufferutil": "^4.0.6",
"chalk": "^4.1.2",
"content-filter": "^1.1.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.18.1",
"express-jwt": "^7.7.0",
"express-winston": "^4.2.0",
"fs": "^0.0.1-security",
"http": "^0.0.1-security",
"https": "^1.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.13.14",
"passport": "^0.5.2",
"passport-http": "^0.3.0",
"passport-local": "^1.0.0",
"socket.io": "^4.5.0",
"utf-8-validate": "^5.0.9",
"winston": "^3.7.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.3",
"@types/express-jwt": "^0.0.42",
"@types/http-terminator": "^2.0.2",
"@types/jest": "^28.1.2",
"@types/jsonwebtoken": "^8.3.8",
"@types/node": "^13.13.52",
"@types/passport": "^1.0.3",
"@types/passport-http": "^0.3.9",
"@types/passport-local": "^1.0.34",
"@typescript-eslint/eslint-plugin": "^5.24.0",
"@typescript-eslint/parser": "^5.24.0",
"eslint": "^8.15.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"http-terminator": "^3.2.0",
"jest": "^28.1.1",
"prettier": "^2.6.2",
"socket.io-client": "^4.5.1",
"ts-jest": "^28.0.5",
"typescript": "^4.3.2"
},
"scripts": {
"test": "mocha",
"compile": "tsc",
"start": "node dist/src/index.js",
"start-dev": "DEBUG=socket.io:client,socket.io:server,socket.io:parser node dist/src/index.js",
"start-dev-s.io-all": "DEBUG=socket* node dist/src/index.js",
"dev": "tsc --watch",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --ext .ts . --fix",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(ts|json|js)\""
}
}