-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
33 lines (33 loc) · 1.28 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
{
"name": "us-gun-crime",
"version": "1.0.0",
"description": "> A web app that informs users about gun crime trends in the U.S., using over 230,000 incident records scraped from the Gun Violence Archive for the period of 2013–2018. [Data source](https://github.com/jamesqo/gun-violence-data).",
"scripts": {
"install:client": "cd client && yarn",
"install:server": "cd server && yarn",
"setup": "yarn && yarn install:client && yarn install:server",
"client": "cd client && yarn start",
"server": "cd server && yarn start-dev",
"dev": "concurrently \"yarn run server\" \"yarn run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/CIS4301-Project-University-of-Florida/U.S.-Gun-Crime.git"
},
"author": "Aleksandr Hovhannisyan and Rachana Podaralla",
"license": "MIT",
"bugs": {
"url": "https://github.com/CIS4301-Project-University-of-Florida/U.S.-Gun-Crime/issues"
},
"homepage": "https://github.com/CIS4301-Project-University-of-Florida/U.S.-Gun-Crime#readme",
"devDependencies": {
"@types/react-router-dom": "^5.1.0",
"concurrently": "^5.0.0"
},
"dependencies": {
"@types/react-helmet": "^5.0.12",
"react-helmet": "^5.2.1",
"react-router-dom": "^5.1.2",
"serialize-javascript": "2.1.1"
}
}