-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.81 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.81 KB
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
{
"name": "communitty",
"version": "1.0.0",
"private": true,
"description": "An open-source social media app created with ExpressJS and ReactJS ",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npx tsc && node server.js || exit 1",
"dev": "concurrently \"npm run start --prefix client\" \"npx nodemon --ignore client/ -e ts,.env,json\"",
"build": "npm install --production && cd client && npm install --production && cd .. && npx tsc && npm run build --prefix client",
"build-dev": "npm install && cd client && npm install && cd .. && npx tsc && npm run build --prefix client",
"clean": "rm -rf ./client/build && npx tsc --build --clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arnitdo/communitty.git"
},
"keywords": [
"communitty",
"social",
"media",
"react",
"express",
"node",
"community"
],
"author": "arnitdo",
"license": "MIT",
"bugs": {
"url": "https://github.com/arnitdo/communitty/issues"
},
"homepage": "https://github.com/arnitdo/communitty#readme",
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.11.18",
"@types/node-fetch": "^2.6.2",
"@types/pg": "^8.6.6",
"@types/swagger-ui-express": "^4.1.3",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"helmet": "^6.0.1",
"jsonwebtoken": "^9.0.0",
"node-fetch": "^2.6.7",
"pg": "^8.8.0",
"swagger-ui-express": "^4.6.0",
"typescript": "^4.9.4"
},
"devDependencies": {
"concurrently": "^7.6.0",
"nodemon": "^2.0.20"
},
"engines": {
"node": "v16"
}
}