-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.31 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
{
"name": "@autoguru/icons",
"version": "0.0.0-semantically-released",
"description": "Icons and illustrations that support product at AutoGuru",
"license": "MIT",
"files": [
"dist",
"icons"
],
"sideEffects": false,
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"prebuild": "yarn run clean",
"build": "yarn run generate && concurrently \"tsc -p tsconfig/cjs.json\" \"tsc -p tsconfig/esm.json\" && tsc --emitDeclarationOnly --declarationDir dist/types -d",
"clean": "rimraf lib/*.tsx dist/",
"format": "prettier --write \"**/*.+(js|jsx|ts|tsx|md)\"",
"generate": "node scripts/build",
"lint": "eslint \"scripts/**/*.{js,jsx,ts,tsx}\" --cache --quiet",
"semantic-release": "semantic-release"
},
"lint-staged": {
"*.{js}": [
"eslint --cache --quiet --fix",
"prettier --write",
"git add"
],
"package.json": [
"npx sort-package-json",
"prettier --write",
"git add"
]
},
"dependencies": {
"tslib": "^2.1.0"
},
"devDependencies": {
"@autoguru/babel-preset": "^1.0.98",
"@autoguru/commitlint-config": "^1.0.57",
"@autoguru/eslint-plugin": "^1.1.3",
"@autoguru/tsconfig": "^1.0.78",
"@babel/core": "^7.12.16",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.12.16",
"@commitlint/cli": "^11.0.0",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.10",
"@semantic-release/release-notes-generator": "^9.0.2",
"@svgr/core": "^5.5.0",
"@svgr/plugin-jsx": "^5.5.0",
"@svgr/plugin-prettier": "^5.5.0",
"change-case": "^4.1.2",
"cheerio": "^1.0.0-rc.5",
"concurrently": "^5.3.0",
"dedent": "^0.7.0",
"eslint": "^7.20.0",
"fs-extra": "^9.1.0",
"globby": "^11.0.2",
"kleur": "^4.1.4",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.2",
"svgo": "^1.3.2",
"typescript": "~4.1.5"
},
"peerDependencies": {
"react": ">=16.8"
},
"volta": {
"node": "16.13.0",
"yarn": "1.22.19"
},
"engines": {
"node": ">=16.13.0",
"yarn": ">=1.22.0",
"npm": "please-use-yarn"
}
}