-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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
40
41
42
43
44
45
46
47
{
"name": "twse-price-notify",
"version": "1.0.0",
"description": "Notification on stocks or ETFs in TWSE",
"main": "dist/app.js",
"bin": {
"twse-price-notify": "./cli.js"
},
"scripts": {
"dev": "npm run development",
"development": "cross-env NODE_ENV=development gulp",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production gulp",
"start": "node dist/app.js",
"start-dev": "node dist/app.js",
"prestart": "npm run prod",
"prestart-dev": "npm run dev",
"flow": "flow"
},
"keywords": [],
"author": "Michael Chen",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-flow": "^7.8.3",
"@babel/runtime": "^7.8.7",
"babel-eslint": "^10.1.0",
"cross-env": "^5.2.1",
"del": "^5.1.0",
"flow-bin": "^0.104.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^6.0.0",
"gulp-if": "^3.0.0",
"gulp-uglify": "^3.0.2",
"isdev": "^1.0.1"
},
"dependencies": {
"dotenv": "^8.2.0",
"puppeteer": "^2.1.1",
"superagent": "^5.2.2"
}
}