-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 864 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 864 Bytes
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
{
"name": "advanced-typescript",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.module.d.ts",
"scripts": {
"init": "npm i",
"lint": "eslint . --ext .ts",
"start": "nodemon src/index.ts",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/snotmare/advanced-typescript.git"
},
"author": "Benjamin J Ferguson",
"license": "ISC",
"bugs": {
"url": "https://github.com/snotmare/advanced-typescript/issues"
},
"homepage": "https://github.com/snotmare/advanced-typescript#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.57.1",
"eslint-plugin-security": "1.7.1",
"eslint-plugin-unused-imports": "2.0.0",
"nodemon": "3.1.10",
"ts-node": "10.9.2",
"typescript": "5.9.3"
}
}