-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.19 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
{
"name": "node-js-slackbot",
"version": "1.0.0",
"description": "Slackbot to get GIT user info",
"main": "run-server.js",
"scripts": {
"start": "node run-server.js",
"dev":
"export DEBUG=myapp; export NODE_ENV=development; nodemon run-server.js",
"test": "NODE_ENV=test mocha",
"lint": "eslint --format=node_modules/eslint-formatter-pretty ."
},
"repository": {
"type": "git",
"url": "https://github.com/kheyro/express-starter.git"
},
"keywords": ["expressjs", "express"],
"author": "Denis Atkesone",
"license": "MIT",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-formatter-pretty": "^1.3.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"mocha": "^5.1.0",
"prettier": "^1.12.1",
"supertest": "^3.0.0"
},
"dependencies": {
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"debug": "^3.1.0",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"isomorphic-fetch": "^2.2.1",
"morgan": "^1.9.0"
}
}