-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.77 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
{
"name": "friendship-lamp",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/*",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"tsc": "tsc ",
"build-server": "npm-run-all lint tsc",
"build-client": "cd client && yarn install && yarn build",
"build": "npm-run-all clean build-server build-client",
"dev:start": "npm-run-all build-server start",
"dev": "nodemon --watch server --watch index.ts -e ts --exec npm run dev:start",
"start": "node .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Alex Wohlbruck",
"license": "ISC",
"dependencies": {
"@types/connect-history-api-fallback": "^1.3.5",
"@types/cookie-parser": "^1.4.2",
"@types/express-session": "^1.17.4",
"@types/express-ws": "^3.0.1",
"@types/passport": "^1.0.7",
"@types/passport-strategy": "^0.2.35",
"connect-history-api-fallback": "^1.6.0",
"connect-mongo": "^4.6.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-async-errors": "^3.1.1",
"express-session": "^1.17.2",
"express-ws": "^5.0.2",
"google-auth-library": "^7.14.0",
"mitt": "^3.0.0",
"mongoose": "^6.2.4",
"mongoose-autopopulate": "^0.16.0",
"mongoose-findorcreate": "^3.0.0",
"p-event": "^4.2.0",
"passport": "^0.5.2",
"passport-google-id-token": "^0.4.7",
"path": "^0.12.7",
"socket.io": "^3.1.2",
"ws": "^8.5.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.21",
"@types/ws": "^8.5.2",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-node": "^10.6.0",
"tslint": "^6.1.3",
"typescript": "^4.6.2"
}
}