forked from CodeYourFuture/Full-Stack-Project-Assessment
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.63 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
55
{
"name": "video-recommendations",
"version": "1.0.0",
"description": "Video Recommendations",
"private": true,
"scripts": {
"build": "npm --workspace client run build",
"dev": "concurrently --kill-others \"npm:dev:*\"",
"dev:client": "cross-env PORT=3000 npm --workspace client run dev",
"dev:server": "cross-env LOG_LEVEL=debug PORT=3100 npm --workspace server run dev",
"start": "npm --workspace server start",
"test": "npm --workspace server --workspace client test",
"test:client": "npm --workspace client test",
"test:server": "npm --workspace server test",
"test:e2e": "npm --workspace e2e test",
"test:e2e:ui": "npm --workspace e2e run test:ui",
"test:e2e:headed": "npm --workspace e2e run test:headed",
"prettier": "prettier --write .",
"eslint": "npm exec eslint ."
},
"author": "Code Your Future <[email protected]>",
"license": "ISC",
"devDependencies": {
"@codeyourfuture/eslint-config-standard": "^4.0.3",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-n": "^17.7.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"eslint-plugin-testing-library": "^6.2.2",
"eslint-plugin-vitest": "^0.4.1",
"prettier": "^3.2.5"
},
"workspaces": [
"client",
"server",
"e2e"
],
"engines": {
"node": "^20.6",
"npm": ">=10"
},
"dependencies": {
"axios": "^1.7.2",
"dotenv": "^16.4.5",
"serverless-http": "^3.2.0",
"uuid": "^10.0.0"
}
}