generated from khannurien/i-want-typescript
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.65 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.65 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
55
56
{
"name": "i-want-typescript",
"version": "1.0.0",
"description": "📜 Template repository for a new Node.js TypeScript project linted using ESLint with Prettier",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"moduleDirectories": [
"node_modules",
"src"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"fix": "npm run lint && npm run format",
"format": "prettier --write .",
"lint": "eslint \"src/**/*.ts\" --fix",
"start": "node dist/index.js",
"test": "jest --config .jestrc.json",
"test:coverage": "jest --config .jestrc.json --coverage",
"watch": "nodemon --config .nodemon.json src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/khannurien/i-want-typescript.git"
},
"author": "Vincent Lannurien",
"license": "MIT",
"bugs": {
"url": "https://github.com/khannurien/i-want-typescript/issues"
},
"homepage": "https://github.com/khannurien/i-want-typescript#readme",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.7.6",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"globals": "^15.11.0",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "<=5.6.0",
"typescript-eslint": "^8.9.0"
},
"dependencies": {
"express": "^5.1.0",
"systeminformation": "^5.27.11"
}
}