-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.5 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.5 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
{
"name": "icecondor-api",
"version": "2.1.0",
"description": "location recording and processing for icecondor.com",
"license": "AGPL-1.0-or-later",
"engines": {
"node": ">=14.16"
},
"dependencies": {
"@turf/boolean-point-in-polygon": "^6.0.1",
"babel-plugin-syntax-async-generators": "^6.13.0",
"bent": "*",
"bluebird": "2.2.*",
"commander": "^9.0.0",
"geojson-area": "~0.2.0",
"mkdirp": "^0.5.1",
"moment": "^2.22.2",
"nano": "0.9.5",
"node-lmdb": "^0.9.4",
"node-uuid": "1.4.*",
"nodemailer": ">=6.4.16",
"protobufjs": "^6.8.6",
"pug": "^3.0.2",
"redis": ">=3.1.1",
"redis-commands": "^1.3.5",
"rethinkdb": "^1.16.2",
"sockjs": "0.3.*",
"source-map-support": "^0.5.6",
"stripe": "2.9.*",
"then-redis": "2.0.*",
"ulid": "^2.3.0",
"websock": "^0.3.19"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.7",
"@types/node": "^12.12.6",
"jasmine-node": "1.14.x",
"@types/jest": "^27.2.5",
"jest": "^27.2.5",
"typescript": "4.0.x",
"typescript-formatter": "^7.2.2"
},
"repository": {
"type": "git",
"url": "http://github.com/icecondor/api.git"
},
"scripts": {
"start": "if tsc && echo node build/api/api.js && node build/api/api.js ; then echo ''; fi",
"build": "if tsc ; then echo ''; fi",
"test": "tsc && jest --roots build --testMatch '**/*spec.js'",
"format": "tsfmt -r"
},
"compilerOptions": {
"typeRoots": [
"node_modules/@types"
]
}
}