-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "location-tracker-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "10.13.0",
"npm": "6.4.1"
},
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4"
},
"devDependencies": {
"concurrently": "^4.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.0",
"nodemon": "^1.18.6",
"prettier": "^1.15.2"
},
"scripts": {
"start": "node src/server.js",
"server": "nodemon src/server.js",
"client": "cd client && yarn start",
"dev": "concurrently \"yarn server\" \"yarn client\"",
"heroku-postbuild": "cd client && yarn && yarn build",
"format": "prettier --write \"src/**/*.{js, jsx, css, json}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/adityasmksaxena/location-tracker.git"
},
"author": "ADITYA SAXENA",
"license": "ISC",
"bugs": {
"url": "https://github.com/adityasmksaxena/location-tracker/issues"
},
"homepage": "https://github.com/adityasmksaxena/location-tracker#readme"
}