-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 931 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 931 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
34
35
36
37
38
39
{
"name": "set-stock",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"update": "node src/schedule.js",
"dev": "better-npm-run build:dev",
"start": "better-npm-run build:prod",
"test": "npm test"
},
"betterScripts": {
"build:prod": {
"command": "node .",
"env": {
"NODE_ENV": "production",
"MONGOLAB_URI": "mongodb://heroku_p81dx3w8:l8g5vqt67j70fp0fkqvjpq94du@ds019980.mlab.com:19980/heroku_p81dx3w8"
}
},
"build:dev": {
"command": "nodemon .",
"env": {
"NODE_ENV": "development",
"MONGOLAB_URI": "mongodb://localhost:27017/set-stock"
}
}
},
"author": "",
"license": "ISC",
"dependencies": {
"better-npm-run": "0.0.8",
"cheerio": "^0.20.0",
"express": "^4.13.4",
"jade": "^1.11.0",
"mongoose": "^4.4.9",
"node-fetch": "^1.4.1",
"talib": "^1.0.2"
}
}