-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 865 Bytes
/
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
{
"name": "@elkost/template",
"version": "3.0.1",
"main": "bin/index.js",
"scripts": {
"lint": "eslint --ext .ts src/",
"build": "rimraf bin && tsc --build tsconfig.build.json",
"application:start": "node --env-file=.env bin/main.js",
"application:develop": "tsx --env-file=.env --watch src/main.ts"
},
"author": {
"name": "Konstantin <Elkost> Ilyin",
"email": "[email protected]"
},
"type": "module",
"imports": {
"#src/*": "./bin/*"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.13.0",
"eslint": "^9.4.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"jest": "^29.7.0",
"rimraf": "^5.0.7",
"ts-jest": "^29.1.4",
"tsx": "^4.15.1",
"type-fest": "^4.18.3",
"typescript": "^5.4.5",
"typescript-eslint": "^7.11.0"
}
}