-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.05 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
{
"name": "prepare-ubuntu-20-04",
"version": "1.0.0",
"main": "dist/main.js",
"repository": "[email protected]:AllanOliveiraM/prepare-ubuntu-20-04.git",
"author": "Allan Oliveira <[email protected]>",
"license": "MIT",
"scripts": {
"start": "ts-node --project ./tsconfig.json ./src/main.ts",
"prettier": "prettier --loglevel warn --write .",
"prettier:check": "prettier --check .",
"eslint": "eslint --fix --max-warnings 0 .",
"eslint:check": "eslint --max-warnings 0 ."
},
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.11.13",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.1",
"typescript": "^4.9.4"
},
"dependencies": {
"joi": "^17.7.0",
"js-yaml": "^4.1.0"
}
}