-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.2 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.2 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
44
45
{
"name": "fooDriver",
"version": "1.0.0",
"description": "Server app for fooDriver",
"main": "index.js",
"scripts": {
"test": "jest --coverage --verbose --collectCoverageFrom=src/**/*.js --collectCoverageFrom=!src/app.js",
"watch": "jest --coverage --verbose --watchAll",
"lint": "eslint '**/*.js'",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fooDriver/server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fooDriver/server/issues"
},
"homepage": "https://github.com/fooDriver/server#readme",
"dependencies": {
"babel-env": "^2.4.1",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"bcrypt": "^3.0.2",
"cors": "^2.8.5",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.3.11",
"mongoose-autopopulate": "^0.9.0",
"mongoose-schema-jsonschema": "^1.2.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "^5.9.0",
"jest": "^23.6.0",
"mongodb-memory-server": "^2.7.2",
"supertest": "^3.3.0"
}
}