-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·45 lines (45 loc) · 1.23 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
{
"name": "slack-app",
"version": "0.0.1",
"description": "Test app for slack",
"main": "index.js",
"scripts": {
"build": "babel ./src -d ./dist -s",
"pretest": "eslint --ignore-path .gitignore .",
"test": "ava",
"start": "npm run build && node dist/index.js",
"dev": "nodemon src/index.js --exec babel-node",
"data": "npm run build && node dist/insertData.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/example/TODO.git"
},
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.5",
"babel-plugin-dotenv": "^0.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^5.1.0",
"eslint-config-ascribe": "^3.0.5",
"nodemon": "^1.18.2"
},
"dependencies": {
"app-root-path": "^3.0.0",
"axios": "^0.19.0",
"base64-arraybuffer": "^0.2.0",
"dotenv": "^6.2.0",
"express": "^4.16.3",
"express-json-validator-middleware": "^1.2.3",
"mongodb": "^3.1.1",
"morgan": "^1.9.1",
"slackify-markdown": "^2.1.0",
"utf8": "^3.0.0",
"websocket": "^1.0.29",
"winston": "^3.2.1"
}
}