-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.72 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.72 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "react-crawler",
"private": true,
"version": "0.0.0",
"engines": {
"node": ">=20.3.1"
},
"scripts": {
"front:dev": "cd src/frontend && npm run dev",
"front:preview": "cd src/frontend && npm run preview",
"build:front": "cd src/frontend && tsc && npm run build",
"build": "tsc --build --verbose && cd src/frontend && npm run build",
"build:back": "tsc --build --verbose src/backend",
"back:start": "NODE_ENV=development node built_backend/index.js",
"backend:dev:DEPRECATED": "NODE_ENV=development nodemon --exec node --loader ts-node/esm ./built_backend/index.js",
"back:dev": "NODE_ENV=development nodemon --watch 'src/backend' --ext 'ts,json' ./src/backend/index.ts",
"back:test": "NODE_ENV=test nodemon --watch 'src/backend' --ext 'ts,json' ./src/backend/index.ts",
"lint": "eslint . --ext ts,js,tsx,jsx",
"lint:fix": "eslint . --ext ts,js,tsx,jsx --fix",
"test:back": "NODE_ENV=test jest --runInBand --selectProjects backend",
"test:front": "NODE_ENV=test jest --runInBand --coverage --selectProjects frontend",
"tests": "NODE_ENV=test jest --runInBand --coverage",
"deploy": "fly deploy --ha=false",
"deploy:full": "npm run build && npm run deploy",
"cypress:open": "cypress open",
"test:e2e": "cypress run"
},
"dependencies": {
"axios": "^1.6.0",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.6.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.20.1",
"redis": "^4.6.10",
"styled-components": "^6.1.1"
},
"devDependencies": {
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@flydotio/dockerfile": "^0.4.10",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.1",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.5",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"cypress": "^13.6.0",
"eslint": "^8.52.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-svg-transformer": "^1.0.0",
"nodemon": "^3.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}