-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.62 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
{
"name": "tool-project-template",
"version": "1.0.0",
"description": "Template form Node backend tools",
"main": "index.js",
"keywords": [
"node"
],
"author": "@geostarters",
"license": "MIT",
"scripts": {
"build": "gulp build",
"build-docs": "documentation build --github --format json --config ./docs/documentation.yml --output docs/components/api.json src/common/*/*.js",
"dev": "nodemon -w src",
"lint": "eslint --fix --cache --ignore-path .gitignore src",
"release": "run-s test build",
"move": "gulp move",
"start": "run-s build move start-node",
"start-node": "node --trace-warnings dist/index.js",
"test": "run-s lint test-flow test-unit",
"test-unit": "tap --reporter classic --no-coverage test/unit",
"test-flow": "flow .",
"test-cov": "nyc --require=flow-remove-types/register --reporter=text-summary --reporter=lcov --cache npm run test-unit"
},
"dependencies": {
"body-parser": "^1.15.2",
"cors": "^2.8.0",
"gulp-babel": "^8.0.0",
"gulp-flow-remove-types": "^1.0.0",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"node-fetch": "^2.6.0",
"tap": "^14.10.7"
},
"devDependencies": {
"@geostarters/eslint-config": "0.0.1",
"babel-plugin-unassert": "^2.1.2",
"coveralls": "^3.0.0",
"documentation": "^12.1.4",
"eslint-config-node": "^2.0.0",
"eslint-plugin-html": "^4.0.2",
"flow-bin": "^0.64.0",
"flow-coverage-report": "^0.4.1",
"flow-remove-types": "^1.2.3",
"flow-typed": "^3.1.0",
"gulp": "^4.0",
"gulp-flow-remove-types": "^1.0.0",
"nodemon": "^1.18.9",
"npm-run-all": "^4.1.2"
}
}