-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.53 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
46
47
{
"name": "ts-eslint",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node dist/src/app.js",
"test": "jest --detectOpenHandles --forceExit --runInBand --testTimeout=10000",
"dev": "nodemon --watch '**/*.ts' --exec 'ts-node' src/index.ts",
"prettier": "prettier --write --ignore-path .gitignore --ignore-path .prettierignore \"**/*.+(js|json|ts|tsx)\"",
"lint": "eslint --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx . --fix",
"validate": "npm run lint && npx tsc",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prepare": "husky install"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"nodemon": "^2.0.15",
"prettier": "^2.6.1",
"ts-jest": "^28.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"dependencies": {
"dotenv": "^16.0.3",
"fs": "^0.0.1-security",
"openai": "^3.2.1"
}
}