-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.68 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.68 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
{
"name": "xobjects-server",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "tsc && node dist/index.js",
"build-ts": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "tsc && node dist/index.js",
"dev2": "./node_modules/nodemon/bin/nodemon.js -e ts --exec \"npm run compile\"",
"dev3": "tsc-watch --onSuccess \"node dist/index.js\"",
"watch-ts": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gksource/xobjects-server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gksource/xobjects-server/issues"
},
"homepage": "https://github.com/gksource/xobjects-server#readme",
"devDependencies": {
"@types/node": "^14.14.20",
"@types/pg": "^7.14.7",
"@types/uuid": "^8.3.0",
"fastify": "^3.9.2",
"fastify-compress": "^3.4.1",
"fastify-cors": "^4.1.0",
"fastify-plugin": "^2.3.4",
"fastify-static": "^3.3.1",
"fastify-ws": "^1.0.3",
"linebyline": "^1.3.0",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.7",
"pg": "^8.5.1",
"tsc-watch": "^4.2.9",
"typescript": "^3.9.7",
"uuid": "^8.3.2"
},
"dependencies": {
"@turf/turf": "^6.5.0",
"@types/bcrypt": "^5.0.0",
"@types/node-fetch": "^3.0.3",
"@types/oauth2-server": "^3.0.13",
"bcrypt": "^5.0.1",
"bson": "^4.4.1",
"oauth2-server": "^3.1.1",
"overpass.js": "^1.0.0",
"short-uuid": "^4.2.0",
"tslint": "^6.1.3"
}
}