-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.08 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
{
"name": "grout",
"version": "0.0.1",
"description": "Geo tile server",
"main": "server.ts",
"scripts": {
"build": "tsc",
"dev": "nodemon",
"prod": "node dist/server.js",
"test": "vitest",
"coverage": "vitest --coverage",
"lint": "eslint",
"lint-fix": "eslint --fix"
},
"nodemonConfig": {
"watch": [
"src",
"data"
],
"exec": "tsc && node ./dist/server.js",
"ext": "ts,js,json"
},
"dependencies": {
"compression": "^1.7.5",
"cors": "^2.8.5",
"express": "^4.21.1",
"morgan": "^1.10.0",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"uid": "^2.0.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.9.3",
"@vitest/coverage-istanbul": "^2.1.8",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"memfs": "^4.14.0",
"nodemon": "^3.1.7",
"prettier": "^3.4.1",
"supertest": "^7.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"vitest": "^2.1.6"
}
}