-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.33 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
{
"name": "build-manager",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc",
"dev": "concurrently --kill-others 'yarn build -w' 'wait-on dist/server.js && nodemon dist/server.js'",
"lint": "eslint .",
"pre-commit": "exec-staged",
"prepare": "husky install",
"start": "node dist/server.js"
},
"dependencies": {
"@josselinbuils/utils": "0.4.2",
"chalk": "4.1.2",
"githubhook": "1.9.3",
"jsonschema": "1.4.1",
"ssh2": "1.11.0",
"uuid": "9.0.0",
"ws": "8.9.0"
},
"devDependencies": {
"@josselinbuils/eslint-config-typescript": "0.4.1",
"@josselinbuils/exec-staged": "1.0.2",
"@josselinbuils/tslint": "5.1.0",
"@types/node": "18.11.3",
"@types/ssh2": "1.11.6",
"@types/uuid": "8.3.4",
"@types/ws": "8.5.3",
"@typescript-eslint/eslint-plugin": "5.40.1",
"@typescript-eslint/parser": "5.40.1",
"concurrently": "7.5.0",
"eslint": "8.26.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.5.2",
"eslint-plugin-import": "2.26.0",
"husky": "8.0.1",
"nodemon": "2.0.20",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"typescript": "4.8.4"
},
"prettier": {
"singleQuote": true
},
"engines": {
"node": ">=18"
}
}