-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.06 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.06 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
{
"name": "@-/root",
"version": "0.0.1",
"description": "",
"scripts": {
"start:fiesta": "cd packages-fiesta/server && npm run start",
"lint": "eslint '**/*.+(t|j)s+(x|)'",
"tsc": "cd packages/util && npm run monorepo-scripts:run-tsc",
"test": "cd packages/util && npm run monorepo-scripts:run-test",
"prettier": "prettier --check .",
"prettier:write": "prettier --write .",
"check": "npm run prettier && npm run lint && npm run tsc",
"prepare": "husky install",
"precommit": "pretty-quick --staged && lint-staged -v"
},
"author": "Alexander Ruliov <alexander.rulov@gmail.com>",
"license": "ISC",
"devDependencies": {
"@babel/core": "7.18.5",
"@typescript-eslint/eslint-plugin": "5.31.0",
"@typescript-eslint/parser": "5.31.0",
"babel-jest": "27.2.4",
"eslint": "7.30.0",
"eslint-plugin-jest": "26.6.0",
"husky": "7.0.1",
"lint-staged": "11.0.0",
"prettier": "2.7.1",
"pretty-quick": "3.1.1",
"typescript": "4.8.3"
},
"lint-staged": {
"*.+(t|j)s+(x|)": [
"eslint"
]
}
}