This repository has been archived by the owner on Jul 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.36 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
64
65
66
67
68
69
70
71
{
"name": "@kaaaxcreators/nodejsanalytics",
"version": "1.1.3",
"description": "Analytics REST Api",
"main": "src/index.js",
"apidoc": {
"title": "@kaaaxcreators/nodejsanalytics Documenation",
"sampleUrl": null
},
"scripts": {
"changelog": "gitmoji-changelog",
"start": "cross-env NODE_ENV=production node ./src/index.js",
"dev": "nodemon ./src/index.js",
"debug": "cross-env NODE_ENV=test nodemon ./src/index.js",
"lint": "eslint ./src/ --ignore-path .gitignore --ignore-pattern internals/scripts",
"lint:fix": "eslint ./src/ --ignore-path .gitignore --ignore-pattern internals/scripts --fix",
"lint:watch": "eslint ./src/ --ignore-path .gitignore --ignore-pattern internals/scripts --watch",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"postcoverage": "open-cli coverage/lcov-report/index.html",
"docs": "apidoc -i src -o docs",
"postdocs": "open-cli docs/index.html",
"docker:start": "cross-env NODE_ENV=production node ./src/index.js",
"test": "cross-env NODE_ENV=test nyc --reporter=html --reporter=text mocha --timeout 20000 --exit --recursive src/api/tests",
"test:unit": "cross-env NODE_ENV=test mocha src/api/tests/unit"
},
"author": "Bernd Storath <[email protected]>",
"license": "GPL-3.0",
"dependencies": {
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"express-validation": "^3.0.8",
"helmet": "^4.4.1",
"http-status": "^1.5.0",
"method-override": "^3.0.0",
"mongoose": "^5.12.0",
"morgan": "^1.10.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@betahuhn/config": "^1.0.2",
"apidoc": "^0.28.0",
"coveralls": "^3.1.0",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "^9.0.0",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"open-cli": "^7.0.0",
"supertest": "^6.1.3"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kaaax0815/nodejsanalytics.git"
},
"bugs": {
"url": "https://github.com/kaaax0815/nodejsanalytics/issues"
},
"homepage": "https://github.com/kaaax0815/nodejsanalytics#readme",
"directories": {
"doc": "docs"
},
"publishConfig": {
"access": "public"
}
}