-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.21 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.21 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
49
50
51
52
53
54
{
"name": "quiet-quitting",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "eslint --ext .ts src/**.ts",
"format": "prettier --write --parser typescript \"src/**/*.ts?(x)\"",
"prepare": "husky install",
"start": "nodemon",
"test": "jest"
},
"keywords": [],
"author": "Coda",
"license": "MIT",
"nodemonConfig": {
"watch": [
"src/**"
],
"ext": "ts",
"ignore": [
"src/**/*.{spec,test}.ts"
],
"exec": "NODE_ENV=development ts-node-esm src/index.ts"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts": [
"eslint",
"prettier --parser=typescript --write"
]
},
"devDependencies": {
"@swc/core": "^1.3.82",
"@swc/helpers": "^0.5.2",
"@types/jest": "^29.5.5",
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}