-
-
Notifications
You must be signed in to change notification settings - Fork 141
/
package.json
104 lines (104 loc) · 3.02 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "root",
"private": true,
"version": "0.22.0",
"scripts": {
"start": "lerna exec -- yarn run start",
"clean": "lerna run clean; rm -rf node_modules; rm -rf packages/**/node_modules;",
"compile": "yarn workspaces foreach -Ap --topological-dev run compile",
"compile:lerna": "lerna run compile",
"publish": "lerna publish",
"publish:canary": "yarn run publish -- --canary",
"test": "yarn run test:lint && yarn run compile && yarn run coverage",
"test:lerna": "yarn run test:lint && yarn run compile:lerna && yarn run coverage:lerna",
"testonly": "lerna run testonly",
"fix": "eslint --fix '{packages,modules,examples}/*/{src,__tests__}/**/*.ts'",
"prettier": "prettier --write '**/*.{json,md,js,ts,jsx,tsx,yml}'",
"test:lint": "eslint 'packages/*/{src,__tests__}/**/*.ts'",
"test:examples": "yarn workspaces foreach -Ap --include '@examples/*' run test",
"test:examples:lerna": "lerna run test --scope=\"@examples/*\"",
"coverage": "yarn workspaces foreach -Ap run coverage",
"coverage:lerna": "lerna run coverage",
"codecov": "codecov",
"version": "yarn changeset version && yarn install --immutable",
"release": "yarn run compile && yarn changeset publish",
"reset": "yarn run clean; yarn run install; yarn run compile",
"postinstall": "husky install"
},
"workspaces": {
"packages": [
"modules/*",
"packages/*",
"examples/*",
"website"
]
},
"lint-staged": {
"*.{json,md,js,ts,jsx,tsx,yml}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 100
},
"renovate": {
"extends": [
"config:base",
"schedule:monthly"
],
"automerge": true,
"major": {
"automerge": false
}
},
"repository": {
"type": "git",
"url": "https://github.com/js-accounts/accounts"
},
"license": "MIT",
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.1",
"@types/jest": "29.5.12",
"@types/node": "20.11.25",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-prettier": "5.1.3",
"husky": "9.0.11",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lerna": "8.1.2",
"lint-staged": "15.2.2",
"nodemon": "3.1.0",
"prettier": "3.2.5",
"rimraf": "5.0.5",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typescript": "~5.3.3"
},
"resolutions": {
"@types/express-serve-static-core": "4.17.38"
},
"jest": {
"projects": [
"<rootDir>/packages/*",
"<rootDir>/modules/*"
]
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/accounts-js",
"logo": "https://opencollective.com/accounts-js/logo.txt"
},
"engines": {
"node": ">= 16.0.0",
"yarn": ">=3.2.0"
},
"packageManager": "[email protected]"
}