-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.59 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
{
"name": "portfolio-with-cms-remix",
"type": "module",
"version": "1.0.0",
"workspaces": [
"packages/*"
],
"license": "MIT",
"private": true,
"engines": {
"node": ">=18",
"npm": ">=8"
},
"scripts": {
"lint": "eslint .",
"prettify": "prettier . --write",
"verify": "npm run lint && npm run tsc --workspaces",
"build": "npm run lint && npm run build --workspaces",
"test": "npm run test --workspaces",
"start:client:dev": "npm run dev --workspace=@portfolio/client",
"start:server:dev": "npm run develop --workspace=@portfolio/strapi"
},
"devDependencies": {
"@babel/eslint-parser": "^7.26.5",
"@babel/preset-react": "^7.26.3",
"@faker-js/faker": "^9.4.0",
"@remix-run/testing": "^2.15.2",
"@testing-library/react": "^16.2.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"@vitejs/plugin-react": "^4.3.4",
"@wixc3/define-remix-app": "^4.6.2",
"@wixc3/react-board": "^4.6.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"jsdom": "^26.0.0",
"prettier": "^3.4.2",
"sass": "^1.83.4",
"typescript": "~5.7.3",
"vite": "^6.0.11",
"vitest": "^3.0.5"
},
"dependencies": {
"@strapi/plugin-i18n": "^4.25.13"
}
}