generated from khannurien/i-want-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.5 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
{
"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 fix:prettier && npm run fix:eslint",
"fix:prettier": "prettier --write .",
"fix:eslint": "eslint \"src/**/*.ts\" --fix",
"start": "node dist/server.js",
"test": "jest --coverage",
"test:coverage": "jest --coverage",
"watch": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'ts-node' src/server.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",
"dependencies": {
"systeminformation": "^5.10.3"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.0",
"jest": "^27.4.5",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}