-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.35 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
{
"name": "base-express",
"version": "1.0.0",
"description": "Skeleton api using expressjs",
"main": "index.js",
"repository": "https://github.com/hiraqdev/base-express",
"author": "Hiraq <hiraq.dev@gmail.com>",
"license": "MIT",
"scripts": {
"build": "rimraf dist/ && babel ./ --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./coverage,./tests,./npm-debug.log,./yarn.lock,./LICENSE,./README --copy-files",
"api": "yarn run build && node -r dotenv/config dist/src/app.js",
"standard": "standard 'src/**/*.js'",
"summary": "standard 'src/**/*.js' | standard-summary",
"test": "jest",
"compose": "docker-compose up --build"
},
"dependencies": {
"body-parser": "^1.18.3",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"helmet": "^3.12.1",
"http-status-codes": "^1.3.0",
"mongoose": "^5.1.5",
"morgan": "^1.9.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-preset-es2015": "^6.24.1",
"faker": "^4.1.0",
"jest": "^23.6.0",
"regenerator-runtime": "^0.13.1",
"rimraf": "^2.6.2",
"standard": "^11.0.1",
"standard-summary": "^1.0.0"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testEnvironment": "node"
}
}