-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.07 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
{
"name": "ts-node-chat-room",
"version": "1.0.0",
"description": "A locally hosted server, for users to connect to the api, then proceed to login and chat to other users.",
"homepage": "#readme",
"repository": {
"type": "git",
"url": "https://github.com/tberey/ts-node-chat-room.git"
},
"main": "build/main.js",
"types": "build/main.d.ts",
"scripts": {
"start:dev": "nodemon",
"start": "npm run build && node build/main.js",
"setup": "npm update && npm install",
"cleanup:full": "rimraf ./logs && rimraf ./build",
"cleanup:build": "rimraf ./build",
"build": "npm run cleanup:full && npm run compile",
"compile": "tsc",
"quick:app": "node build/main.js",
"start:app": "npm run build && node build/main.js",
"upinstart": "npm update && npm install && npm run start:app",
"test:app": "mocha --exit -r ts-node/register src/tests/deployment.test.ts",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'src/tests/*.ts'",
"lint": "eslint . --ext .ts"
},
"keywords": [],
"author": "Tom Berey",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/chai": "^4.2.18",
"@types/cookie-parser": "^1.4.2",
"@types/ejs": "^3.0.4",
"@types/express": "^4.17.11",
"@types/express-session": "^1.17.0",
"@types/mocha": "^8.2.2",
"@types/mysql": "^2.15.18",
"@types/node": "^14.17.7",
"@types/socket.io": "^2.1.6",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.32.0",
"nodemon": "^2.0.7",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"bcrypt": "^5.0.1",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"cookie-parser": "^1.4.5",
"dotenv": "^9.0.2",
"ejs": "^3.1.3",
"express": "^4.17.1",
"express-session": "^1.17.2",
"mocha": "^8.4.0",
"mysql": "^2.18.1",
"rollbar": "^2.24.0",
"simple-txt-logger": "^1.0.6",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0"
}
}