-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 835 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 835 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
31
32
33
34
{
"name": "code-challenge-1242",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "ts-node src/ ./input.txt -N=25",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "29.0.3",
"@types/node": "18.7.18",
"@typescript-eslint/eslint-plugin": "5.38.0",
"eslint": "8.23.1",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard-with-typescript": "23.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "6.0.1",
"jest": "29.0.3",
"ts-node": "10.9.1",
"typescript": "4.8.3"
},
"prettier": {
"semi": false,
"trailingComma": "none",
"singleQuote": true,
"printWidth": 80
}
}