-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 758 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 758 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
{
"name": "typescript-bootstrap",
"version": "1.0.0",
"description": "A TypeScript bootstrap template with minimal configuration.",
"main": "index.js",
"scripts": {
"start": "nodemon",
"test": "jest",
"lint": "npx eslint --fix ."
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^26.6.3",
"nodemon": "^2.0.20",
"prettier": "^2.8.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"ts-node": "10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"readline": "^1.3.0",
"commander": "^6.2.0"
}
}