-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.08 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.08 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
{
"name": "sha-257",
"version": "1.0.0",
"private": true,
"description": "Group 12 implementation of SWE project",
"homepage": "https://github.com/Purple-Chicken/javascript-makes-me-vomit#readme",
"bugs": {
"url": "https://github.com/Purple-Chicken/javascript-makes-me-vomit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Purple-Chicken/javascript-makes-me-vomit.git"
},
"license": "ISC",
"author": "Purple-Chicken",
"type": "module",
"main": "main.ts",
"directories": {
"docs": "docs",
"test": "tests"
},
"scripts": {
"predev": "docker compose -f backend/docker-compose.yaml up -d",
"dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"",
"dev:client": "vite",
"dev:server": "tsx --watch server.ts",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "node --import tsx --experimental-vm-modules ./node_modules/jasmine/bin/jasmine.js --config=jasmine.json",
"puppeteer": "node --import tsx --experimental-vm-modules ./node_modules/jasmine/bin/jasmine.js --config=jasmine.puppeteer.json",
"acceptance": "tsc -p tsconfig.spec.json --noEmit && node --import tsx ./node_modules/@cucumber/cucumber/bin/cucumber.js"
},
"dependencies": {
"bcryptjs": "^3.0.3",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"mongoose": "^9.3.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@cucumber/cucumber": "^12.7.0",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^5.0.6",
"@types/jasmine": "^6.0.0",
"@types/jsdom": "^21.1.7",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.10.6",
"@types/passport": "^1.0.17",
"@types/passport-jwt": "^4.0.1",
"@types/passport-local": "^1.0.38",
"concurrently": "^9.2.1",
"dotenv": "^17.3.1",
"eslint": "^10.0.3",
"jasmine": "^6.1.0",
"jsdom": "^26.1.0",
"mongodb": "^7.1.0",
"puppeteer": "^24.15.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^8.0.0"
}
}