-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.26 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
{
"name": "ubc-profpilot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "node index.js",
"dev:client": "webpack serve --mode development",
"build:client": "webpack --mode production",
"build": "npm run build:client",
"postinstall": "npx playwright install webkit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:performance": "artillery run tests/performance/prof-pilot.yml",
"test:security": "npm run test:security:api && npm run test:security:ui",
"test:mobile": "playwright test tests/e2e/mobile/",
"test:api": "jest tests/api/ --run",
"test:unit": "jest tests/unit/",
"test:integration": "jest tests/integration/",
"test:security:api": "jest tests/security/api/",
"test:security:ui": "playwright test tests/security/ui/",
"lint": "echo 'Linting not configured yet'",
"pretest": "npm run lint"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.28.3",
"@babel/preset-env": "^7.28.3",
"@babel/preset-react": "^7.27.1",
"axios": "^1.11.0",
"babel-loader": "^10.0.0",
"cheerio": "^1.0.0-rc.3",
"cors": "^2.8.5",
"css-loader": "^7.1.2",
"dotenv": "^16.3.1",
"express": "^4.21.2",
"html-webpack-plugin": "^5.6.4",
"openai": "^4.24.1",
"playwright": "1.54.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"style-loader": "^4.0.0",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"devDependencies": {
"@playwright/test": "^1.54.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.5.2",
"artillery": "^2.0.8",
"axe-playwright": "^1.2.3",
"cross-env": "^7.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jest-junit": "^16.0.0",
"lighthouse": "^11.4.0",
"supertest": "^6.3.3"
}
}