-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"name": "exprest",
"version": "1.0.0",
"private": true,
"bin": "./bin/www",
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon",
"test": "npm run lint",
"lint": "eslint app/**/*.js",
"format": "prettier-eslint --write app/**/*.js",
"dist": "pkg . --out-path=./dist --targets=host --compress=GZip",
"docker": "docker build -t jingsam/exprest .",
"prepare": "husky || true"
},
"engines": {
"node": ">=22"
},
"lint-staged": {
"app/**/*.js": [
"prettier-eslint --write"
]
},
"dependencies": {
"@supabase/supabase-js": "^2.45.1",
"@terraformer/arcgis": "^2.1.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-file-routing": "^2.1.5",
"helmet": "^7.1.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"nodemon": "^3.1.4",
"pkg": "^5.8.1",
"prettier": "^3.3.3",
"prettier-eslint-cli": "^8.0.1"
}
}