-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 886 Bytes
/
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
{
"name": "elaway-charge-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node build/src/main.js",
"dev": "tsx watch ./src/main.ts",
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.json",
"lint": "biome check --error-on-warnings ./src",
"lint:fix": "biome check --apply ./src"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.9",
"dotenv": "^16.3.2",
"eslint": "^8.56.0",
"express": "^4.18.2",
"joi": "^17.13.3",
"puppeteer": "^23.11.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@types/express": "^4.17.21",
"@types/node": "^20.11.5",
"lefthook": "^1.6.1",
"tsx": "^4.7.0"
},
"engines": {
"node": ">=14.0.0"
}
}