-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 888 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 888 Bytes
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
{
"name": "horae",
"version": "1.0.0",
"description": "CSE 110 Group H project",
"main": "server.js",
"repository": "https://github.com/kartmanny/Horae",
"author": "kartmanny",
"license": "MIT",
"private": true,
"dependencies": {
"@types/date-fns": "^2.6.0",
"@types/react-beautiful-dnd": "^12.1.2",
"@types/react-router-dom": "^5.1.5",
"body-parser": "^1.19.0",
"concurrently": "^5.2.0",
"date-fns": "^2.14.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"firebase": "^7.14.5",
"morgan": "^1.10.0",
"react-beautiful-dnd": "^13.0.0",
"react-router-dom": "^5.1.2"
},
"scripts": {
"server": "cd server && nodemon server.js",
"client": "yarn --cwd client start",
"dev": "concurrently \"yarn run server\" \"yarn run client\""
},
"devDependencies": {
"nodemon": "^2.0.3",
"typescript": "^3.8.3"
}
}