-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.21 KB
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
{
"name": "onesimpleone-deploy",
"version": "0.0.2",
"private": true,
"description": "Gatsby deployment orb",
"main": "./src/",
"scripts": {
"build": "yarn build:tsdeclare && yarn pre-build:compile && yarn build:compile",
"build:compile": "node ./build/dist/index.js",
"build:tscheck": "tsc -p ./src/tsconfig.json --noEmit",
"build:tsdeclare": "tsc -p ./src/tsconfig.json --emitDeclarationOnly",
"lint:eslint-check": "eslint . --ext .js,.ts",
"lint:eslint-fix": "yarn lint:eslint-check --fix",
"lint:prettier-check": "prettier --check .",
"lint:prettier-fix": "prettier --write .",
"pre-build:tscheck": "tsc -p ./build/tsconfig.json --noEmit",
"pre-build:compile": "tsc -p ./build/tsconfig.json"
},
"devDependencies": {
"@onesimpleone/configs": "^2.8.6",
"@types/node": "^18.11.9",
"eslint": "^8.27.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "^4.8.4",
"arg": "^5.0.2",
"esbuild": "^0.15.13"
},
"license": "ISC",
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"eslint"
],
"*.json": "prettier --write"
},
"repository": "https://github.com/VofSwords/orbtest.git"
}