-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.92 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
{
"name": "gamingwebsite",
"version": "1.0.0",
"description": "A website I'm creating for fun where people can play single-player and multi-player games. Stack is MongoDB, Express, React, Node, and TypeScript",
"main": "index.js",
"scripts": {
"test": "mocha --exit --require ts-node/register --require tests/test-preparer.ts 'tests/*.ts'",
"start": "tsc && node dist/server/index.js",
"build": "cd client && npm install && npm run build",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"prettier-check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/benjaminJohnson2204/GamingWebsite.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/benjaminJohnson2204/GamingWebsite/issues"
},
"homepage": "https://github.com/benjaminJohnson2204/GamingWebsite#readme",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/chai": "^4.3.3",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.5",
"@types/mocha": "^9.1.1",
"@types/mocha-prepare": "^0.1.0",
"@types/node": "^18.7.10",
"@types/passport": "^1.0.9",
"@types/passport-local": "^1.0.34",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"eslint-plugin-react": "^7.30.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"bcrypt": "^5.0.1",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"dotenv": "^16.0.1",
"eslint-config-react-app": "^7.0.1",
"express": "^4.18.1",
"express-session": "^1.17.3",
"http": "^0.0.1-security",
"mocha": "^10.0.0",
"mocha-prepare": "^0.1.0",
"mongo-unit": "^3.2.0",
"mongoose": "^6.5.1",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"prettier": "^2.7.1",
"react-app": "^1.1.2",
"socket.io": "^4.5.1"
}
}