-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.17 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
{
"name": "compcoding",
"version": "1.0.0",
"description": "algorithms and subject matter deep dives",
"exports": null,
"type": "module",
"scripts": {
"format": "npm run eslint -- --fix && npm run prettier -- --write",
"lint": "npm run eslint && npm run prettier && tsc --noEmit",
"prettier": "prettier --config .prettierrc.json '**/*.{css,g?(raph)ql,js,json,jsx,html,md,less,sass,scss,ts,tsx,y?(a)ml}' --check",
"eslint": "eslint . --cache --cache-location 'node_modules/.cache/eslint/' --max-warnings=0 --report-unused-disable-directives ."
},
"dependencies": {},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/node": "^22.15.29",
"eslint": "^9.33.0",
"eslint-config-prettier": "10.0.1",
"globals": "^16.3.0",
"prettier": "3.5.3",
"tsx": "^4.19.2",
"typescript": "^5.8",
"typescript-eslint": "^8.22.0",
"jest": "^29.7.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danst3in/compCoding.git"
},
"author": "Dan Stein",
"license": "ISC",
"bugs": {
"url": "https://github.com/danst3in/compCoding/issues"
},
"homepage": "https://github.com/danst3in/compCoding#readme"
}