-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.09 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
{
"name": "@zthun/interviews",
"version": "0.0.1",
"description": "A repository for demoing code for coding interviews. Also has common problem solutions found on leet code.",
"author": "Anthony Bonta",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/zthun/interviews"
},
"scripts": {
"clean": "rimraf dist reports *.tgz packages/**/dist packages/**/*.tgz packages/**/yarn-error.log *.log",
"test": "jest --coverage --runInBand",
"lint": "lint-janitor",
"build": "tsc -p tsconfig.prod.json",
"make": "npm run clean && npm run lint && npm run test && npm run build",
"start": "ts-node src/index.ts"
},
"devDependencies": {
"@types/jest": "^28.1.0",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.38",
"@zthun/lint-janitor": "^11.2.1",
"@zthun/lint-janitor-config": "^11.2.1",
"jest": "^28.1.0",
"jsdom": "^19.0.0",
"lodash": "^4.17.21",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"packageManager": "yarn@3.2.1"
}