-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 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
48
{
"name": "ts-starter",
"version": "1.0.0",
"description": "A starter for node typescript projects",
"scripts": {
"start": "ts-node ./src/index.ts",
"lint": "eslint ./src/**/*.ts",
"lint:fix": "eslint --fix ./src/**/*.ts",
"test": "vitest --run"
},
"keywords": [
"typescript",
"node",
"starter"
],
"author": "Christian Emmert",
"repository": {
"type": "git",
"url": "https://github.com/christianemmert/ts-starter.git"
},
"license": "ISC",
"packageManager": "[email protected]",
"engines": {
"node": ">=14.16"
},
"devDependencies": {
"@types/eslint": "^9.0.0",
"@types/node": "^20.0.0",
"@types/prettier": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"dotenv": "^16.0.3",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-isaacscript": "^4.0.0",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^7.0.0",
"@vitest/eslint-plugin": "^1.0.1",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.0",
"vitest": "^2.0.0"
}
}