-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.13 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
{
"name": "workouts",
"version": "1.0.0",
"description": "Workout API",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "NODE_ENV=test mocha ./test/specs/*",
"test:watch": "NODE_ENV=test mocha --watch ./test/specs/*",
"lint": "eslint --fix server/ test/specs/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leonardofreitass/workouts.git"
},
"author": "Leonardo Freitas dos Santos",
"license": "MIT",
"bugs": {
"url": "https://github.com/leonardofreitass/workouts/issues"
},
"homepage": "https://github.com/leonardofreitass/workouts#readme",
"dependencies": {
"body-parser": "^1.18.2",
"consign": "^0.1.6",
"dotenv": "^5.0.0",
"express": "^4.16.2",
"helmet": "^3.11.0",
"joi": "^13.1.2",
"lodash": "^4.17.5",
"morgan": "^1.9.0",
"socket.io": "^2.0.4",
"winston": "^2.4.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"mocha": "^5.0.0",
"sinon": "^4.3.0"
}
}