-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.45 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
{
"name": "myartverse",
"description": "The open source art platform where you keep track of your characters (or fursonas), commissions, and adopts!",
"private": true,
"version": "0.0.0",
"license": "Apache-2.0",
"type": "module",
"homepage": "https://github.com/MyArtverse-Project/MyArtverse",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "dotenv -- turbo dev --filter=website --no-daemon",
"dev:widget": "dotenv -- turbo dev --filter=widget --no-daemon",
"build": "turbo build --filter=website",
"build:all": "turbo build --concurrency 3",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"prepare": "husky || true",
"knip": "knip"
},
"lint-staged": {
"**/*.{js,ts,tsx,md,mdx,json}": [
"prettier --write .",
"eslint . --quiet"
]
},
"devDependencies": {
"@stylistic/eslint-plugin": "^1.6.3",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@turbo/gen": "latest",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.3.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unused-imports": "^3.1.0",
"husky": "^9.0.0",
"knip": "^5.1.4",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.11",
"turbo": "latest"
}
}