-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.23 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.23 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
{
"name": "typescrtipt-script-starter",
"version": "1.0.0",
"description": "Simple but effective way of starting a typescript script",
"main": "index.js",
"scripts": {
"start": "tsc-alias && node dist/index.js",
"dev": "tsc-watch -b --onSuccess 'npm run start'",
"dev:env": "cross-env $(cat .env) npm run dev",
"debug": "tsc-watch -b --onSuccess 'node --inspect dist/index.js'",
"clean": "rimraf dist test/results",
"build": "tsc",
"lint": "eslint . --fix",
"test": "vitest run",
"test:coverage": "npm run test -- --coverage",
"test:watch": "vitest watch"
},
"author": "Alex Torres <hey@alextorres.me>",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.24.0",
"@types/node": "22.14.0",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"@vitest/coverage-v8": "^3.1.1",
"aws-sdk-client-mock": "^4.1.0",
"cross-env": "^7.0.3",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-simple-import-sort": "^12.1.1",
"tsc-alias": "^1.8.15",
"tsc-watch": "^6.2.1",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
}
}