-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2 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
{
"name": "@anime-skip/api-client",
"version": "3.0.0",
"description": "GraphQL client for interacting with the Anime Skip API",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/anime-skip/api-client-ts",
"author": "Aaron Klinker <[email protected]>",
"license": "GPL-3.0-or-later",
"private": false,
"engines": {
"pnpm": ">=7"
},
"scripts": {
"compile": "tsc --noEmit",
"lint": "pnpm lint:no-fix -- --fix",
"lint:no-fix": "eslint . --ext .js,.ts --max-warnings 0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"gen": "esno src/generate/index.ts && prettier --write src/stateless.ts",
"gen:dev": "BASE_API_URL=http://localhost:8081 pnpm gen",
"build": "pnpm gen && pnpm compile && tsc -p tsconfig.build.json",
"build:dev": "pnpm gen:dev && pnpm compile && tsc -p tsconfig.build.json",
"test:e2e": "docker-compose -f docker-compose.e2e.yml up --build --abort-on-container-exit --renew-anon-volumes",
"test:e2e:dev": "BACKEND_IMAGE=anime-skip/timestamp-service/server:dev pnpm test:e2e",
"prepare": "husky install"
},
"devDependencies": {
"@types/chance": "^1.1.3",
"@types/jest": "^27.4.1",
"@types/koa": "^2.13.4",
"@types/koa-bodyparser": "^4.3.7",
"@types/md5": "^2.3.2",
"@types/node": "^15.14.9",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"axios": "^0.26.1",
"axios-retry": "^3.2.4",
"chance": "^1.1.8",
"code-block-writer": "^11.0.0",
"eslint": "^7.32.0",
"eslint-plugin-only-warn": "^1.0.3",
"esno": "^0.14.1",
"expect": "^27.5.1",
"husky": "^6.0.0",
"jest": "^27.5.1",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"node-fetch": "^2.6.7",
"prettier": "^2.6.1",
"pretty-quick": "^3.1.3",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"dependencies": {
"async-mutex": "^0.3.2",
"md5": "^2.3.0"
}
}