-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.68 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
{
"name": "frontend-challenges",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]",
"author": "Pawan Kumar <[email protected]>",
"license": "MIT",
"repository": "https://github.com/jsartisan/frontend-challenges.git",
"scripts": {
"build": "pnpm run --filter=@frontend-challenges/website build",
"dev": "pnpm run --filter=@frontend-challenges/website dev",
"generate": "esno ./packages/scripts/generate-play.ts",
"lint": "next lint",
"readme": "esno ./packages/scripts/readme.ts",
"start": "next start",
"lint:fix": "eslint --fix .",
"clean:workspaces": "rm -rf node_modules && pnpm -r exec rm -rf node_modules"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@actions/io": "^1.1.3",
"esno": "^4.0.0",
"prettier": "^3.1.0"
},
"devDependencies": {
"@frontend-challenges/backend": "workspace:*",
"@frontend-challenges/scripts": "workspace:*",
"@frontend-challenges/shared": "workspace:*",
"@frontend-challenges/website": "workspace:*",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-next": "^14.1.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.0",
"postcss": "^8",
"prettier-plugin-tailwindcss": "^0.5.9",
"tailwindcss": "^3.3.0",
"typescript": "^5",
"unified": "^11.0.4",
"unist-util-visit": "^5.0.0",
"utility-types": "^3.10.0"
}
}