-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.44 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
{
"name": "happy-deployer",
"version": "0.0.3",
"description": "Simple deployer for JS apps",
"author": "Lyoha Plotinka",
"type": "module",
"license": "MIT",
"private": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"lint": "eslint src --fix",
"test": "vitest run --passWithNoTests",
"check-types": "tsc --noEmit",
"build": "tsup",
"prepare": "npx simple-git-hooks"
},
"dependencies": {
"date-fns": "^2.29.3",
"inversify": "^6.0.1",
"lodash.merge": "^4.6.2",
"node-ssh": "^13.0.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@swc/core": "^1.3.93",
"@types/lodash.merge": "^4.6.7",
"@types/node": "^18.11.10",
"@types/ssh2": "^1.11.6",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nano-staged": "^0.8.0",
"prettier": "^2.8.0",
"simple-git-hooks": "^2.8.1",
"tsup": "^7.2.0",
"typescript": "^4.9.3",
"vitest": "^0.25.3"
},
"nano-staged": {
"*.{ts}": [
"npm run lint",
"npm run test"
]
},
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/nano-staged"
}
}