-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.85 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
{
"name": "chipsy-workspace",
"private": true,
"scripts": {
"start": "lerna run start --stream",
"build": "lerna run build --stream",
"release": "lerna version",
"lint": "lerna run lint --parallel",
"lint:fix": "lerna run lint:fix --parallel",
"publish": "lerna publish from-git",
"website": "yarn start --scope=chipsy-website"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lokesh-coder/chipsy.git"
},
"author": "lokesh-coder",
"license": "MIT",
"bugs": {
"url": "https://github.com/lokesh-coder/chipsy/issues"
},
"homepage": "https://github.com/lokesh-coder/chipsy#readme",
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@commitlint/config-lerna-scopes": "^18.4.4",
"@lerna-lite/cli": "^3.2.1",
"@lerna-lite/publish": "^3.2.1",
"@lerna-lite/run": "^3.2.1",
"@lerna-lite/version": "^3.2.1",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^6.19.0",
"astro-eslint-parser": "^0.11.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-astro": "^0.31.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tailwindcss": "^3.10.1",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"prettier": "^3.2.4",
"prettier-plugin-astro": "^0.8.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional",
"@commitlint/config-lerna-scopes"
]
},
"workspaces": [
"packages/*",
"packs/*"
]
}