-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.27 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@arthurka/ts-reset",
"version": "1.13.0",
"types": "dist/index.d.ts",
"scripts": {
"ts:noWatch": "tsc --noEmit",
"ts": "npm run ts:noWatch -- --watch",
"dev": "npm run start-checks && nodemon -w src -w helpers -e ts,js -x \"tsc --emitDeclarationOnly --declarationMap && node helpers/insert-ts-ignores-to-dist.js\"",
"dev+test": "concurrently -r \"npm run dev\" \"npm run test:watch\"",
"my-compile": "node ../compile.js",
"build": "npm run start-checks && rm -rf dist && tsc --emitDeclarationOnly && node helpers/insert-ts-ignores-to-dist.js && npm run my-compile",
"start-checks": "node helpers/start-checks.js",
"repo-fix": "node helpers/eslint.js --fix",
"tsd:noWatch": "tsd --show-diff",
"tsd": "nodemon -w tests -w src -w dist -e ts -x \"clear && npm run tsd:noWatch\"",
"test": "npm run tsd:noWatch",
"test:watch": "nodemon --delay 1 -w dist -w tests -w helpers -e ts -x \"npm t\"",
"prepublishOnly": "npm run build && node helpers/prepublish-checks.js && npm t",
"prepare": "node -e \"try { require('husky').install(); } catch(e) { if(e.code !== 'MODULE_NOT_FOUND') throw e; }\""
},
"dependencies": {
"@arthurka/ts-utils": "3.10.0"
},
"devDependencies": {
"@arthurka/eslint": "3.14.0",
"@total-typescript/ts-reset": "0.5.1",
"@tsconfig/node18-strictest": "1.0.0",
"@types/jsonwebtoken": "9.0.2",
"@types/lint-staged": "13.2.0",
"@types/node": "18.13.0",
"@types/node-fetch": "2.6.4",
"@types/react": "18.2.20",
"concurrently": "8.2.1",
"husky": "8.0.3",
"json5": "2.2.3",
"jsonwebtoken": "9.0.1",
"lint-staged": "13.2.3",
"node-fetch": "2.6.12",
"nodemon": "3.0.1",
"react": "18.2.0",
"tsd": "0.28.1",
"typescript": "5.1.6",
"zod": "3.22.1"
},
"tsd": {
"directory": "tests",
"compilerOptions": {
"types": [
"@types/node",
"@total-typescript/ts-reset",
"."
]
}
},
"author": {
"name": "ArthurKa",
"email": "arthur.katruk@gmail.com"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/ArthurKa/ts-reset.git"
},
"bugs": {
"url": "https://github.com/ArthurKa/ts-reset/issues"
},
"homepage": "https://github.com/ArthurKa/ts-reset#readme"
}