-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.42 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
{
"name": "ai-code-tooling",
"version": "1.0.0",
"description": "Using GPT to generate JS code tools.",
"main": "index.js",
"author": "Ashley Qian",
"license": "MIT",
"type": "module",
"scripts": {
"lint": "tsc && eslint '**/*.[jt]s?(x)' --cache --fix",
"test": "yarn jest ---runInBand"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@swc/core": "^1.3.35",
"@swc/jest": "^0.2.24",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"babel-jest": "^29.4.3",
"chalk": "^5.2.0",
"commander": "^10.0.0",
"dotenv": "^16.0.3",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"inquirer": "^9.1.4",
"jest": "^29.4.3",
"openai": "^3.1.0",
"prettier": "^2.8.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"jest": {
"testMatch": ["<rootDir>/tests/**/*.{spec,test}.{js,jsx,ts,tsx}"],
"transform": {
"^.+\\.(js|jsx|mjs|cjs|ts|tsx)$": "@swc/jest"
},
"transformIgnorePatterns": ["[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs|cjs|ts|tsx)$"]
}
}