-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.05 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
{
"name": "tse-api",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --watch \"/src/**\"/ --ext \"ts,json\" --ignore \"src/**/*.spec.ts\" --exec \"ts-node src/main.ts\"",
"build": "tsc",
"build:clean": "./scripts/clean.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Datzu712/tse-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Datzu712/tse-api/issues"
},
"homepage": "https://github.com/Datzu712/tse-api#readme",
"dependencies": {
"puppeteer": "^24.2.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-security": "^3.0.1",
"nodemon": "^3.1.9",
"prettier": "^3.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}