-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.1 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
{
"name": "axios-interface",
"version": "2.1.1",
"description": "create interface from axios",
"type": "module",
"main": "es/index.js",
"module": "es/index.js",
"types": "es/index.d.ts",
"files": [
"es"
],
"sideEffects": false,
"scripts": {
"build": "rm -rf es/ && tsc",
"lint": "eslint src",
"lint-type": "tsc --noEmit",
"test": "vitest run --coverage",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/dancerphil/axios-interface"
},
"author": "Cong Zhang <dancerphil1994@gmail.com>",
"license": "MIT",
"dependencies": {
"axios": "^1.2.2"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@stylistic/eslint-plugin": "^4.4.0",
"@vitest/coverage-v8": "3.1.4",
"axios-mock-adapter": "^1.21.2",
"eslint": "^9.27.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"stylelint": "^14.13.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"vitest": "^3.1.4"
}
}