generated from khannurien/i-want-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.55 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
49
50
51
{
"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 --forceExit",
"test:coverage": "jest --config .jestrc.json --coverage",
"watch": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'ts-node' 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": {
"@types/jest": "^28.1.6",
"@types/node": "^18.6.3",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.7.0",
"jest": "^28.1.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"node-fetch": "^3.3.0",
"systeminformation": "^5.12.13"
}
}