-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.14 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.14 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
{
"name": "neighbourhood-watch-app",
"version": "1.0.0",
"description": "Community neighbourhood watch and chat application",
"main": "server/index.js",
"scripts": {
"start": "node start-app.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "cd server && npm run dev",
"client": "cd client && npm start",
"build": "cd client && npm run build",
"install-all": "npm install && cd server && npm install && cd ../client && npm install",
"reset": "node scripts/port-manager.js reset",
"kill": "node scripts/port-manager.js kill",
"test-ports": "node scripts/port-manager.js test"
},
"keywords": [
"neighbourhood",
"community",
"chat",
"safety"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.2.0",
"@mui/material": "^7.2.0",
"@mui/styled-engine-sc": "^7.2.0",
"animated-fluent-emojis": "^0.1.2",
"form-data": "^4.0.4",
"node-fetch": "^3.3.2",
"styled-components": "^6.1.19"
}
}