-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.28 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.28 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
40
41
42
43
44
45
{
"name": "finch",
"private": true,
"engines": {
"node": ">=10.19.0"
},
"workspaces": [
"packages/*"
],
"license": "MPL-2.0",
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@commitlint/config-lerna-scopes": "8.3.4",
"acorn": "7.2.0",
"babel-eslint": "10.1.0",
"commitlint": "8.3.5",
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-prettier": "3.1.3",
"fs-extra": "9.0.0",
"husky": "4.2.5",
"inquirer": "7.1.0",
"jest": "26.0.1",
"lerna": "3.22.0",
"nodemon": "2.0.4",
"parse-package-name": "0.1.0",
"prettier": "2.0.5",
"validate-npm-package-name": "3.0.0"
},
"scripts": {
"all": "yarn lerna exec yarn",
"cli": "./packages/cli/index.js",
"dev": "nodemon --ext js --watch \"packages/**\"",
"dev:debug": "nodemon --inspect-brk --ext js --watch \"packages/**\"",
"format": "yarn prettier \"**/*.{js,json,md,yaml}\" --write",
"lint": "yarn lint:js",
"lint:js": "eslint \"**/*.js\"",
"new": "node scripts/create-cli",
"pre-commit": ".git/hooks/pre-commit",
"test": "jest",
"test:debug": "jest --clearCache && npx -n '--inspect-brk' jest --runInBand --no-cache"
}
}