-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "chess-typescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon --exec npx ts-node ./src/index.ts",
"demo": "nodemon --exec npx ts-node ./src/demo.ts",
"lint": "eslint . --ext .ts",
"test": "jest --maxWorkers=1",
"test:watch": "jest --watchAll --maxWorkers=1 --verbose",
"lint-staged": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nk18chi/chess-typescript.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nk18chi/chess-typescript/issues"
},
"homepage": "https://github.com/nk18chi/chess-typescript#readme",
"devDependencies": {
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.5.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.1.4",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"lint-staged": {
"*.ts": "eslint --fix --ext .ts"
}
}