-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
41 lines (41 loc) · 1.07 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
{
"name": "countdown-to-counttown",
"version": "1.8.0",
"description": "It counts down",
"scripts": {
"build": "babel src --out-dir dist",
"test": "jest --watch",
"start": "npm run build && node dist/index.js",
"start-local": "npm run build && NODE_ENV=test_env node dist/index.js"
},
"author": "Brian Gerson",
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.4.4",
"@slack/events-api": "^1.0.1",
"bluebird": "^3.5.0",
"body-parser": "^1.18.2",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"moment": "^2.17.1",
"moment-timezone": "^0.5.23",
"mongoose": "^5.9.16",
"node-schedule": "^1.2.0",
"nodemon": "^1.11.0",
"path": "^0.12.7",
"ramda": "^0.26.1",
"redis": "^2.8.0",
"serve-static": "^1.11.1",
"slack-node": "^0.1.8"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"jest": "^24.8.0"
}
}