-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"name": "octane",
"private": true,
"license": "unlicenced",
"workspaces": [
"packages/*"
],
"scripts": {
"format": "prettier --write \"{*,packages/**/*}.+(js|jsx|ts|tsx|css|scss|json|yml|md|mdx|html)\"",
"generate": "plop readmes && prettier --write \"{*,packages/**/*}.md\" ",
"postinstall": "manypkg check",
"lint": "eslint \"packages/**/*.{js,jsx,ts,tsx}\" --fix --quiet",
"plop": "plop",
"build:all": "yarn workspace @autoguru/utilities build && nx run-many --target=build --all",
"release": "yarn run build:all && changeset publish",
"test": "jest",
"test:ci": "jest --no-cache --ci --coverage"
},
"resolutions": {
"@babel/core": "^7.24.5"
},
"volta": {
"node": "20.9.0",
"yarn": "3.6.1"
},
"engines": {
"node": ">=20.9.0",
"yarn": ">=3.6.0",
"npm": "please-use-yarn"
},
"packageManager": "yarn@3.6.1",
"devDependencies": {
"@autoguru/eslint-plugin": "*",
"@changesets/cli": "^2.28.0",
"@manypkg/cli": "^0.23.0",
"@types/node": "^16.4.13",
"browserslist-config-autoguru": "*",
"dotenv": "^16.4.7",
"eslint": "^9.20.1",
"glob": "^11.0.1",
"jest": "^26.6.1",
"nx": "^20.4.5",
"plop": "^4.0.1",
"prettier": "^3.5.1",
"typescript": "5.3.3"
}
}