-
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) · 796 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 796 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": "fantasy-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src -d build",
"prestart": "babel src -d build",
"start": "node build/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"async": "^2.1.5",
"body-parser": "^1.15.2",
"express": "^4.14.0",
"express-bearer-token": "^2.1.0",
"lodash": "^4.16.4",
"moment": "^2.17.1",
"moment-timezone": "^0.5.11",
"morgan": "^1.7.0",
"pg": "^6.1.5"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"babel-watch": "^2.0.3",
"concurrently": "^3.4.0",
"nodemon": "^1.11.0"
}
}