forked from harness/oats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 886 Bytes
/
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
{
"name": "@harness/oats",
"private": true,
"version": "0.1.0",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=16.0.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "exit 0",
"start": "node ./tools/watch.js",
"fmt": "prettier --write packages/*/src/**/*.ts"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@types/js-yaml": "^4.0.1",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"chokidar": "^3.5.3",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"globby": "^13.1.3",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "^2.2.1",
"typescript": "^4.8.4",
"vitest": "^0.24.5"
}
}