-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 975 Bytes
/
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
{
"private": true,
"name": "imgly-plugins",
"version": "0.0.0",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"purge": "npx rimraf node_modules && turbo run purge",
"dev": "turbo run dev",
"check:all": "turbo run check:all",
"check:types": "turbo run check:types"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.51.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.8.5",
"prettier-plugin-organize-imports": "^3.2.2",
"pretty-quick": "^3.1.3",
"turbo": "^1.12.2",
"typescript": "^5.3.3"
}
}