-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.37 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
46
47
48
49
50
51
52
53
54
55
{
"name": "LOF-API",
"private": true,
"main": "index.js",
"engines": {
"node": "10.9.0"
},
"scripts": {
"dev": "nodemon index.js",
"start": "NODE_ENV=production node index.js",
"lint": "eslint ./src index.js",
"lint:fix": "eslint --fix ./src index.js",
"test": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --coverage --testResultsProcessor=jest-junit",
"heroku:push": "cd .. && git subtree push --prefix api heroku-api master || true"
},
"dependencies": {
"axios": "^0.16.2",
"bcrypt": "^3.0.0",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-cors": "^0.0.16",
"koa-ejs": "^4.1.2",
"koa-jwt": "^3.2.2",
"koa-logger": "^3.1.0",
"koa-router": "^7.2.1",
"lodash": "^4.17.4",
"mongoose": "^4.12.0",
"nodemailer": "^4.6.8",
"uuid": "^3.1.0"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"eslint": "^4.8.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-prettier": "^2.3.1",
"jest": "^21.2.1",
"jest-junit": "^3.1.0",
"nodemon": "^1.12.1",
"prettier": "^1.7.4"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!<rootDir>/node_modules/"
]
},
"jest-junit": {
"output": "./coverage/junit.xml",
"usePathForSuiteName": "true",
"classNameTemplate": "",
"titleTemplate": "{title}"
}
}