-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.32 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
44
45
{
"name": "ts-teamup",
"description": "Typescript wrapper for https://tmup.com",
"repository": "https://github.com/Heavyrisem/ts-teamup",
"version": "0.0.4",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"start": "yarn build && node dist/index.js",
"test": "jest",
"test:cov": "jest --coverage",
"prebuild": "rimraf dist",
"build": "swc ./src -d ./dist && yarn build:type",
"build:tsc": "tsc",
"build:type": "tsc --project ./tsconfig.build.json && tsc-alias",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.235",
"@swc/jest": "^0.2.22",
"@types/jest": "^28.1.7",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"dotenv": "^16.0.3",
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"tsc-alias": "^1.7.1",
"typescript": "^4.7.4"
},
"dependencies": {
"axios": "^1.1.3"
}
}