typescript-learning/code/ts-practice/package.json

26 lines
716 B
JSON
Raw Permalink Normal View History

2023-03-06 06:22:01 +00:00
{
"name": "code_test",
"version": "1.0.0",
"description": "用于测试前端的typescript代码",
"type": "module",
"scripts": {
"test": "ts-node-esm index.ts"
},
"author": "Kane",
"license": "ISC",
"devDependencies": {
2023-03-31 14:12:22 +00:00
"eslint-plugin-vue": "^9.10.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-standard-with-typescript": "^34.0.1",
2023-03-06 06:22:01 +00:00
"eslint-plugin-import": "^2.27.5",
2023-03-31 14:12:22 +00:00
"eslint-plugin-n": "^15.7.0",
2023-03-06 06:22:01 +00:00
"eslint-plugin-promise": "^6.1.1",
2023-03-31 14:12:22 +00:00
"typescript": "^5.0.3"
2023-03-06 06:22:01 +00:00
},
"dependencies": {
"axios": "^1.3.4"
}
}