-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 2 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
{
"name": "codehammers",
"version": "1.0.0",
"description": "A social platform for Codesmith Alumni to continue mentoring and learning together.",
"main": "/dist/index.js",
"scripts": {
"start": "node dist/server/index.js",
"build": "tsc --build",
"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",
"docker-test:all": "docker-compose -f docker-compose-test.yml up --abort-on-container-exit",
"docker-remove-all": "bash ./scripts/docker-remove-all.sh ch ch-dev-dep-test cd-testv1 code-hammers",
"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": {
"aws-sdk": "^2.1616.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.3.4",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.7",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/multer": "^1.4.11",
"@types/node": "^20.12.11",
"@types/supertest": "^6.0.2",
"concurrently": "^8.2.2",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"supertest": "^7.0.0",
"ts-jest": "^29.1.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
}
}