-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.77 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "frecency",
"version": "0.0.0",
"description": "Monorepo for frecency",
"license": "MIT",
"repository": "https://github.com/frecency/frecency",
"workspaces": [
"packages/*"
],
"author": {
"name": "James Phillips",
"email": "[email protected]"
},
"private": true,
"scripts": {
"boot": "npx lerna bootstrap",
"build": "mrepo build",
"clean": "mrepo clean",
"commit_": "npx git-cz",
"format": "npx pretty-quick --pattern \"packages/**/*.*(js|ts)\"",
"generate": "mrepo generate",
"link_": "mrepo link",
"lint": "npx eslint \"packages/**/!(*.d).ts\" --fix",
"list_": "npx lerna list -l",
"prepare": "npx husky install",
"reboot": "yarn clean && npx rimraf ./node_modules && yarn boot",
"release": "mrepo release",
"test": "mrepo test",
"test:coverage": "mrepo test --coverage",
"test:e2e": "mrepo test -f e2e",
"unlink_": "mrepo unlink"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@types/jest": "26.0.21",
"@types/node": "14.14.35",
"@typescript-eslint/eslint-plugin": "4.19.0",
"@typescript-eslint/parser": "4.19.0",
"@zmotivat0r/mrepo": "0.3.2",
"commitizen": "4.2.3",
"conventional-changelog-cli": "2.1.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.22.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "2.22.1",
"husky": "5.2.0",
"jest": "26.6.3",
"jest-extended": "0.11.5",
"lerna": "^3.22.1",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"rimraf": "3.0.2",
"ts-jest": "26.5.2",
"tsconfig-extends": "1.0.1",
"tsconfig-paths": "3.9.0",
"typescript": "3.9.9"
}
}