-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
63 lines (63 loc) · 1.8 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "mind-cast-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./src/bin",
"dev": "cross-env NODE_ENV=development nodemon ./src/bin/index.js --ignore __tests__",
"test": "cross-env NODE_ENV=test jest --detectOpenHandles",
"test:coverage": "cross-env NODE_ENV=test jest --coverage --detectOpenHandles",
"test:coveralls": "cross-env NODE_ENV=test jest --coverage --coverageReporters=text-lcov | coveralls",
"lint": "eslint '**/*.js'",
"lint:fix": "prettier-eslint '**/*.js' --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint:fix",
"npm run lint",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/steniowagner/mindCast-server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/steniowagner/mindCast-server/issues"
},
"homepage": "https://github.com/steniowagner/mindCast-server#readme",
"dependencies": {
"body-parser": "^1.18.3",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"gridfs-stream": "https://github.com/steniowagner/gridfs-stream/tarball/ef19db5ef74111f4d381581973d4fe7c93851d59",
"mongoose": "^5.4.14",
"mp3-duration": "^1.1.0",
"multer": "^1.4.1"
},
"devDependencies": {
"coveralls": "^3.0.3",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"faker": "^4.1.0",
"husky": "^1.3.1",
"jest": "^24.7.1",
"lint-staged": "^8.1.5",
"nodemon": "^1.18.10",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"superagent-binary-parser": "^1.0.1",
"supertest": "^4.0.2"
}
}