-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
105 lines (105 loc) · 2.49 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
98
99
100
101
102
103
104
105
{
"name": "picknic",
"version": "1.0.0",
"description": "A picnic site recommendation engine",
"main": "index.js",
"engines": {
"node": "~5.6"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "tslint --project .",
"start": "node build/index.js",
"test": "nyc mocha -r ts-node/register source/**/*.test.ts"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"source"
],
"exclude": [
"build",
"coverage",
"source/locales",
"source/public",
"source/test"
],
"reporter": [
"html"
],
"all": true,
"require": [
"ts-node/register"
]
},
"repository": {
"type": "git",
"url": "git@omelette.earthiverse.ca:earthiverse/picknic.git"
},
"keywords": [
"picknic"
],
"author": "Kent Rasmussen",
"license": "MIT",
"dependencies": {
"@google/maps": "^0.5.5",
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.17.0",
"@types/cheerio": "^0.22.9",
"@types/csv-parse": "^1.1.11",
"@types/express": "^4.16.0",
"@types/express-session": "^1.15.11",
"@types/i18next": "^11.9.3",
"@types/latlon-geohash": "^1.1.0",
"@types/mongoose": "^5.2.19",
"@types/multer": "^1.3.7",
"@types/mustache": "^0.8.31",
"@types/nconf": "^0.0.37",
"@types/node": "^10.12.0",
"@types/proj4": "^2.3.4",
"@types/request": "^2.47.1",
"@types/request-ip": "0.0.33",
"@types/request-promise-native": "^1.0.15",
"bcrypt": "^3.0.1",
"body-parser": "^1.18.3",
"cheerio": "^1.0.0-rc.2",
"connect-mongo": "^2.0.1",
"csv-parse": "^3.1.3",
"express": "^4.16.4",
"express-request-language": "^1.1.15",
"express-session": "^1.15.6",
"fake-useragent": "^1.0.1",
"geoip2": "^1.0.5",
"i18next": "^11.9.1",
"i18next-sync-fs-backend": "^1.1.0",
"iconv-lite": "^0.4.24",
"latlon-geohash": "^1.1.0",
"mapshaper": "^0.4.98",
"mongodb": "^3.1.8",
"mongoose": "^5.3.4",
"multer": "^1.4.1",
"mustache": "^3.0.0",
"nconf": "^0.10.0",
"node-expat": "^2.3.17",
"proj4": "^2.5.0",
"request": "^2.88.0",
"request-ip": "^2.1.1",
"request-promise-native": "^1.0.5",
"striptags": "^3.1.1",
"xlsx": "^0.14.0"
},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"eslint": "^5.7.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.3"
}
}