-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.81 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
{
"name": "codehammers",
"version": "1.0.0",
"description": "A social platform for Codesmith Alumni to continue mentoring and learning together.",
"main": "/dist/index.js",
"scripts": {
"build": "tsc",
"test": "jest --detectOpenHandles --coverage",
"client": "cd client && npm start",
"server": "node server/index.ts",
"server-ts": "ts-node-dev server/index.ts",
"dev-ts": "concurrently --kill-others \"npm run server-ts\" \"npm run client\"",
"dev": "concurrently --kill-others \"npm run server\" \"npm run client\"",
"docker-dev": "docker-compose -f docker-compose-dev.yml up --build",
"test:client": "cd client && npm test",
"test:all": "concurrently \"npm test\" \"npm run test:client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Code-Hammers/code-hammers.git"
},
"author": "Sean Kelly",
"license": "ISC",
"bugs": {
"url": "https://github.com/Code-Hammers/code-hammers/issues"
},
"homepage": "https://github.com/Code-Hammers/code-hammers#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"html-webpack-plugin": "^5.5.3",
"jsonwebtoken": "^9.0.1",
"mongoose": "^7.3.4",
"react": "^18.2.0",
"webpack": "^5.88.1"
},
"devDependencies": {
"@babel/preset-env": "^7.22.9",
"@types/bcryptjs": "^2.4.2",
"@types/jest": "^29.5.3",
"@types/jsonwebtoken": "^9.0.2",
"@types/mongoose": "^5.11.97",
"@types/node": "^20.5.1",
"@types/supertest": "^2.0.12",
"concurrently": "^8.2.0",
"jest": "^29.6.2",
"nodemon": "^3.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}