-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.41 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.41 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "mega-reminder-bot",
"version": "1.0.0",
"description": "reminder bot for telegram",
"main": "index.js",
"scripts": {
"build": "babel build.js -d build && node build/build.js production",
"build-debug": "babel build.js -d build && node build/build.js development",
"test": "echo \"Error: no test specified\" && exit 1",
"debug-bgservice": "npm run build-debug && node build/background-service/index.js",
"debug-web": "npm run build-debug && node build/web/index.js",
"deploy-database": "babel deploy-database.js -d build && node build/deploy-database.js",
"heroku-postbuild": "npm run build"
},
"engines": {
"node": "9.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/larrybohn/mega-reminder-bot.git"
},
"author": "Larry Bohn",
"license": "ISC",
"bugs": {
"url": "https://github.com/larrybohn/mega-reminder-bot/issues"
},
"homepage": "https://github.com/larrybohn/mega-reminder-bot#readme",
"dependencies": {
"axios": "^0.18.0",
"bluebird": "^3.5.1",
"bootstrap": "^4.0.0",
"hat": "0.0.3",
"jquery": "^3.3.1",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-router": "^7.4.0",
"koa-send": "^4.1.3",
"koa-webpack-dev-middleware": "^2.0.2",
"moment": "^2.22.0",
"moment-timezone": "^0.5.14",
"nano": "^6.4.2",
"prop-types": "^15.6.1",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-octicon": "^3.0.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"reactstrap": "^5.0.0-beta.3",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"async": "^2.5.0",
"autoprefixer": "^8.2.0",
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.1.0",
"koa-webpack-hot-middleware": "^1.0.3",
"node-sass": "^4.8.3",
"postcss-loader": "^2.1.3",
"react-hot-loader": "^4.0.1",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"url-loader": "^1.0.1",
"webpack": "^4.3.0",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-cli": "^2.0.13",
"webpack-merge": "^4.1.2",
"yargs": "^8.0.2"
}
}