forked from bcgov/eagle-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.57 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "eagle-api",
"version": "1.0.0",
"author": "Mark Lisé",
"contributors": [
"Mark Lisé <[email protected]>"
],
"description": "Eagle API",
"keywords": [],
"license": "Apache 2.0",
"main": "app",
"typings": "app",
"scripts": {
"lint": "eslint .",
"start": "node app",
"start-watch": "nodemon app.js",
"test": "echo 'Test suite should be run with \"`npm run tests` or npm `run tests-debug`\"'",
"tests": "cross-env UPLOAD_DIRECTORY='./api/test/uploads/' jest api --runInBand",
"tests-debug": "node --inspect node_modules/.bin/jest --runInBand",
"coverage": "jest --collectCoverageFrom=api/**.js --coverage api"
},
"pre-push": [
"lint"
],
"dependencies": {
"@turf/helpers": "~6.1.4",
"@turf/turf": "~5.1.6",
"@types/node-cron": "~2.0.3",
"axios": "~0.19.0",
"bcrypt-nodejs": "~0.0.3",
"biguint-format": "~1.0.0",
"body-parser": "~1.18.3",
"clamav.js": "~0.12.0",
"crypto": "~1.0.1",
"csv": "~5.1.1",
"db-migrate": "~0.11.4",
"db-migrate-mongodb": "~1.5.0",
"dotenv": "^16.0.1",
"epsg": "~0.5.0",
"express": "~4.16.0",
"flake-idgen": "~1.1.0",
"jsonwebtoken": "~8.4.0",
"jwks-rsa": "~1.3.0",
"minio": "~7.0.8",
"moment": "~2.24.0",
"mongodb": "~3.3.3",
"mongoose": "~5.7.7",
"nconf": "~0.9.1",
"passport": "~0.4.0",
"passport-local": "~1.0.0",
"path": "~0.12.7",
"proj4": "~2.5.0",
"qs": "~6.5.2",
"reproject": "~1.2.2",
"request": "~2.88.0",
"request-promise-native": "~1.0.7",
"sharp": "~0.23.0",
"stream": "~0.0.2",
"stream-transform": "~2.0.1",
"swagger-tools": "~0.10.4",
"tree-model": "~1.0.7",
"underscore": "~1.9.1",
"validator": "~9.4.1",
"wicket": "~1.3.3",
"winston": "~2.4.4",
"yamljs": "0.2.9"
},
"devDependencies": {
"@types/factory-girl": "~5.0.1",
"@types/faker": "~4.1.5",
"@types/jest": "~24.0.18",
"@types/mongoose": "~5.5.14",
"@types/nock": "~10.0.3",
"@types/supertest": "~2.0.8",
"bluebird": "~3.5.5",
"bson": "~4.0.3",
"canada": "~0.1.0",
"cross-env": "~6.0.3",
"csvtojson": "~2.0.10",
"database-cleaner": "~1.2.0",
"eslint": "~6.8.0",
"factory-girl": "~5.0.4",
"faker": "~4.1.0",
"folder-hash": "~3.3.0",
"glob": "~7.1.6",
"hummus-recipe": "~1.9.2",
"jasmine": "~3.5.0",
"jest": "~25.0.0",
"jest-cli": "~24.9.0",
"mongodb-memory-server": "~5.2.0",
"nock": "~10.0.1",
"nodemon": "~1.19.4",
"pre-push": "~0.1.1",
"shelljs": "~0.8.3",
"supertest": "~3.3.0"
}
}