-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1023 Bytes
/
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
{
"name": "ts-boilerplate",
"version": "0.0.1",
"description": "TypeScript Boilerplate",
"main": "src/main.ts",
"scripts": {
"build": "npm run compile && npm run lint && npm run format:check",
"compile": "tsc",
"format": "npm run prettier -- --write .",
"format:check": "npm run prettier -- --check .",
"lint": "eslint src --max-warnings=0",
"prettier": "prettier --ignore-path .gitignore",
"start": "ts-node src/main.ts",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [],
"author": "eumemic@gmail.com",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/postlight__mercury-parser": "^2.2.4",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"dependencies": {
"dotenv": "^16.0.3"
}
}