-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"name": "gastify",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"dev": "ts-node-dev --respawn --transpileOnly src/index.ts",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adbimaditya/gastify.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/adbimaditya/gastify/issues"
},
"homepage": "https://github.com/adbimaditya/gastify#readme",
"dependencies": {
"dotenv": "^16.4.7",
"http-status-codes": "^2.3.0",
"playwright": "^1.49.1"
},
"devDependencies": {
"@types/node": "^22.10.7",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.2",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}