-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.12 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
{
"name": "chicago-l-eta",
"version": "1.0.0",
"description": "A simple train tracker that reports the estimated ETAs of the next train at each station in the CTA (Chicago Transit Authority) system.",
"main": "server/index.js",
"scripts": {
"start": "yarn --cwd ./server run start",
"dev-server": "yarn --cwd ./server run dev-server",
"client": "yarn --cwd ./client run start",
"dev": "concurrently 'yarn run dev-server' 'yarn run client'",
"heroku-postbuild": "concurrently 'yarn --cwd ./client install && yarn --cwd ./client run build' 'yarn --cwd ./server install'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RyanBreaker/Chicago-L-ETA.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/RyanBreaker/Chicago-L-ETA/issues"
},
"homepage": "https://github.com/RyanBreaker/Chicago-L-ETA#readme",
"devDependencies": {
"concurrently": "^5.2.0",
"prettier": "^2.2.1"
},
"prettier": {
"semi": false,
"trailingComma": "none",
"singleQuote": true,
"jsxSingleQuote": true
},
"engines": {
"node": "14.x"
}
}