-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.03 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
{
"name": "solo-dev-saas-template",
"version": "1.0.0",
"private": true,
"repository": "https://github.com/Joliwood/solo-dev-saas-template",
"author": "Guillaume <jolibois.contact@gmail.com>",
"license": "MIT",
"scripts": {
"build:client": "pnpm -F client build:client",
"check": "pnpm eslint && pnpm typescript",
"dev:client": "pnpm -F client dev:client",
"dev:server": "pnpm -F server dev:server",
"eslint": "eslint .",
"typescript": "concurrently \"pnpm -F client typescript\" \"pnpm -F server typescript\""
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.0.0",
"concurrently": "^9.0.1"
},
"dependencies": {
"dotenv": "^16.4.5",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-airbnb": "19.0.4",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react": "7.34.1",
"eslint": "8.57.0",
"typescript": "^5.6.2"
}
}