This repository was archived by the owner on Oct 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.25 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.25 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "robust-database",
"version": "1.0.0",
"description": "Concept to use database with Mongoose, seed and TypeScript",
"main": "index.js",
"author": "Romain KELIFA <romain.kelifa@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Roms1383/robust-database.git"
},
"engines": {
"node": ">=8.10.0"
},
"dependencies": {
"@hapi/boom": "^7.4.3",
"@hapi/joi": "^15.1.1",
"dotenv": "^8.1.0",
"enjoi": "^6.0.0",
"fastify": "^2.7.1",
"fastify-swagger": "^2.4.0",
"joi-to-json-schema": "^5.1.0",
"mongoose": "^5.7.5",
"plur": "^3.1.1",
"ramda": "^0.26.1",
"request": "^2.88.0",
"snyk": "^1.221.1",
"winston": "^3.2.1",
"yn": "^3.1.1"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@types/boom": "^7.3.0",
"@types/jest": "^24.0.18",
"@types/mongoose": "^5.5.15",
"@types/request-promise-native": "^1.0.16",
"@types/yn": "^3.1.0",
"chalk": "^2.4.2",
"codacy-coverage": "^3.4.0",
"commander": "^3.0.0",
"commitlint-config-kroms": "^1.1.3",
"eslint": "^6.2.2",
"eslint-config-kroms": "^1.1.2",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.0.4",
"inquirer": "^7.0.0",
"jest": "^24.9.0",
"lint-staged": "^9.2.5",
"mongo-seeding": "^3.3.0",
"mongodb": "^3.3.2",
"request-promise-native": "^1.0.7",
"ts-jest": "^24.0.2",
"tslint": "^5.19.0",
"typescript": "^3.6.2"
},
"scripts": {
"lint": "tslint --fix -c tslint.json 'src/**/*.ts' && eslint --fix -c .eslintrc '*.js'",
"build": "rm -rf ./built/ && yarn tsc",
"postman": "yarn build && node ./postman.js",
"seed": "yarn build && node ./seeding.js",
"use": "yarn seed && node ./using.js",
"server": "node ./server.js",
"serve": "yarn seed && node ./postman.js && yarn server",
"vulnerabilities": "yarn snyk test",
"test": "yarn seed -d && npx jest --detectOpenHandles --forceExit --coverage",
"test-with-coverage": "yarn test && cat ./coverage/lcov.info | codacy-coverage",
"snyk-protect": "snyk protect"
},
"snyk": true
}