This repository has been archived by the owner on Aug 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.44 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
72
{
"name": "sab-database",
"version": "1.0.0",
"description": "Scheduling Application for Biometric database and API",
"main": "server.js",
"scripts": {
"build": "babel src -d build",
"dev": "nodemon --exec babel-node src/server.js",
"start": "node build/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"install:codeclimate": "docker pull codeclimate/codeclimate",
"install:k6": "docker pull loadimpact/k6",
"codeclimate:analyze": "docker run --tty --rm --env CODECLIMATE_CODE=\"$PWD\" --volume \"$PWD\":/code --volume /var/run/docker.sock:/var/run/docker.sock --volume /tmp/cc:/tmp/cc codeclimate/codeclimate analyze",
"spellcheck": "cspell **/*.md src/**/*.js public/*.html --color",
"test:load": "docker run -i loadimpact/k6 run - <./tests/load/script.js",
"fullcheck": "npm run lint && npm run codeclimate:analyze",
"mongodb": "docker run --rm -p 27017:27017 mongo",
"seed": "babel-node --no-deprecation Tools/dataSeeder/DataSeeder.js",
"csv:import": "babel-node --no-deprecation Tools/LocationImporter.js",
"deprecated:mongodb:seed": "cd data_seed && docker build -t mongo-seeding . && docker run --rm --network='host' mongo-seeding"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MTS-STM/SAB-DataBase.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MTS-STM/SAB-DataBase/issues"
},
"homepage": "https://github.com/MTS-STM/SAB-DataBase#readme",
"resolutions": {
"mixin-deep": ">=2.0.1",
"set-value": ">=3.0.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"post-merge": "npm install"
}
},
"dependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.5.4",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"helmet": "^3.18.0",
"jsonwebtoken": "^8.5.1",
"moment-timezone": "^0.5.26",
"mongodb": "^3.2.7",
"mongoose": "^5.6.3",
"morgan": "^1.9.1"
},
"devDependencies": {
"cspell": "^4.0.26",
"cspell-dict-fr-fr": "^1.2.4",
"csv-parser": "^2.3.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-security": "^1.4.0",
"husky": "^3.0.0",
"nodemon": "^1.19.1",
"prettier": "^1.18.2"
}
}