-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.21 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.21 KB
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
{
"name": "coding-circle",
"version": "1.0.0",
"description": "Challenges from TNW's Coding Circle",
"main": "app.js",
"scripts": {
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:tsc",
"lint:eslint": "npx eslint --cache --cache-strategy content",
"lint:eslint:fix": "npm run lint:eslint --fix",
"lint:prettier": "npx prettier --check \"**/*.{xml,json,yml,yaml,css}\"",
"lint:prettier:fix": "npx prettier --write \"**/*.{xml,json,yml,yaml,css}\"",
"lint:tsc": "npx tsc --project tsconfig.json --noEmit",
"test": "tsx --test '**/*.test.ts'",
"test:watch": "tsx --test --watch \"**/*.test.ts\"",
"test:coverage": "tsx --test --experimental-test-coverage \"**/*.test.ts\""
},
"repository": {
"url": "https://github.com/SheepCreativeSoftware/coding-circle.git"
},
"keywords": [
"coding-circle"
],
"author": "Marina Egner",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"tsx": "^4.19.2",
"typescript": "^5.2.2",
"@types/node": "^22.9.0",
"husky": "^9.1.6",
"prettier": "^3.3.3"
},
"dependencies": {
"buntstift": "^5.0.2"
},
"engines": {
"node": ">=22.0.0"
}
}