-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.15 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.15 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
76
77
{
"name": "spiralsounds",
"version": "1.0.0",
"description": "Online classic vinyl store",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node server.js",
"dev": "node --watch server.js",
"migrate": "node migrate.js",
"seed": "node seed.js",
"setup": "npm run migrate && npm run seed && npm start",
"reset-db": "rm -f database.db && npm run migrate && npm run seed",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"biome:check": "biome check .",
"biome:fix": "biome check . --write",
"biome:format": "biome format . --write"
},
"author": "Elizabeth Emerson",
"license": "MIT",
"dependencies": {
"@stripe/stripe-js": "^9.0.0",
"bcryptjs": "^3.0.2",
"chart.js": "^4.5.0",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"disconnect": "^1.2.2",
"dompurify": "^3.3.2",
"dotenv": "^17.2.3",
"express": "^4.21.2",
"express-rate-limit": "^8.1.1",
"express-session": "^1.18.2",
"express-validator": "^7.2.1",
"helmet": "^8.1.0",
"joi": "^18.0.1",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.1",
"nodemailer": "^8.0.5",
"qrcode": "^1.5.4",
"socket.io": "^4.8.1",
"speakeasy": "^2.0.0",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"stripe": "^21.0.1",
"validator": "^13.15.22",
"winston": "^3.18.3",
"ws": "^8.18.3",
"xss": "^1.0.15"
},
"devDependencies": {
"@biomejs/biome": "^2.4.9",
"jest": "^29.7.0",
"supertest": "^7.1.4"
},
"private": true,
"pnpm": {
"overrides": {
"nodemailer": ">=8.0.5",
"validator": ">=13.15.22",
"js-yaml": ">=3.14.2",
"jws": ">=3.2.3",
"qs": ">=6.14.2",
"tar": ">=7.5.11",
"lodash": ">=4.18.0",
"minimatch": ">=3.1.3",
"@tootallnate/once": ">=3.0.1",
"dompurify": ">=3.3.2",
"express-rate-limit": ">=8.1.1",
"socket.io-parser": ">=4.2.6",
"picomatch": ">=2.3.2",
"path-to-regexp": ">=0.1.13"
}
}
}