-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.88 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.88 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "position-api",
"version": "1.0.1",
"description": "",
"main": "index.ts",
"types": "index.d.ts",
"bin": {
"position-api": "src/index.ts"
},
"scripts": {
"build": "npx tsc",
"start": "npx tsx src/index.ts",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --ext .ts . --fix",
"prettier": "prettier --ignore-path .gitignore --write \"**/*.+(ts|json)\"",
"test": "jest",
"test:curl": "sh ./test-curl.sh",
"test:curl:js": "jest ./test/api.curl.test.ts",
"postinstall": "copyfiles -n .env.template .env",
"generate:readme": "pandoc -f markdown+autolink_bare_uris README.md -o ./src/static/index.html"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^18.19.9",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"concurrently": "^7.6.0",
"copyfiles": "^2.4.1",
"eslint": "^8.55.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"moment": "^2.30.1",
"nodemon": "^2.0.20",
"prettier": "^3.1.0",
"supertest": "^6.3.3",
"typescript": "^5.3.3"
},
"dependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.17",
"@types/node": "^18.19.9",
"brotli": "^1.3.3",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"express": "^4.19.2",
"moment": "^2.30.1",
"node-fetch": "^2.6.7",
"path": "^0.12.7",
"puppeteer": "^19.11.1",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"request": "^2.88.2",
"ts-jest": "^29.4.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}