-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 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
{
"name": "backend",
"version": "1.0.0",
"description": "Backend for Beatfinder App",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node_modules/babel-cli/bin/babel.js ./ --source-maps --out-dir dist",
"start": "node_modules/nodemon/bin/nodemon.js -- node_modules/babel-cli/bin/babel-node.js server.js",
"debug": "node_modules/nodemon/bin/nodemon.js -- node_modules/babel-cli/bin/babel-node.js debug server.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"base-64": "^0.1.0",
"eslint": "^4.8.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-lodash": "^2.4.5",
"eslint-plugin-node": "^5.2.0",
"nodemon": "^1.12.1"
},
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.1",
"moment": "^2.18.1",
"mongoose": "^4.12.1",
"morgan": "^1.9.0",
"node-fetch": "^1.7.3"
}
}