-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.18 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.18 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
{
"name": "qode-ai",
"version": "1.0.0",
"description": "",
"main": "dist/main.js",
"scripts": {
"start": "tsc && node --env-file=.env dist/main.js",
"test": "vitest run --coverage",
"format": "prettier --config .prettierrc --write \"**/*.{js,jsx,ts,tsx}\"",
"format:check": "prettier --list-different \"**/*.{js,jsx,ts,tsx}\" || (echo 'There are files that need formatting.' && exit 1)",
"lint": "eslint .",
"lint:fix": "eslint . --fix "
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"@vitest/coverage-v8": "^1.2.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vitest": "^1.2.0"
},
"dependencies": {
"@tensorflow/tfjs": "^4.17.0",
"ioredis": "^5.3.2",
"simple-git": "^3.22.0",
"ts-morph": "^21.0.1"
}
}