-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.05 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": "crcp6340-1264-webapp",
"license": "MIT",
"private": true,
"description": "Implementation of the web application project for CRCP 6340 - Creative Coding for Application Development; Summer 2026 term.",
"author": {
"name": "Brittni Watkins",
"url": "https://blwatkins.github.io/"
},
"homepage": "https://github.com/blwatkins/CRCP6340-1264-WebApp#readme",
"repository": {
"type": "git",
"url": "https://github.com/blwatkins/CRCP6340-1264-WebApp.git"
},
"bugs": {
"url": "https://github.com/blwatkins/CRCP6340-1264-WebApp/issues"
},
"type": "module",
"engines": {
"node": "^22.13.0 || >=24"
},
"scripts": {
"lint:client": "eslint -c eslint.config.client.mjs ./src-client",
"lint:server": "eslint -c eslint.config.server.mjs .",
"lint:all": "npm run lint:client && npm run lint:server",
"build": "vite build",
"build:watch": "vite build --watch",
"build:dev": "vite build --mode development",
"build:dev:watch": "vite build --mode development --watch",
"build:check": "npm run build:dev && npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"dev": "dotenvx run -f .env.dev -- nodemon src/main.mjs",
"start": "dotenvx run -- node src/main.mjs"
},
"dependencies": {
"@dotenvx/dotenvx": "^2.0.0",
"@ethersproject/sha2": "^5.8.0",
"@reown/appkit": "^1.8.21",
"@reown/appkit-adapter-ethers": "^1.8.21",
"ejs": "^6.0.1",
"ethers": "^6.17.0",
"express": "^5.2.1",
"express-rate-limit": "^8.5.2",
"mysql2": "^3.22.5",
"nodemailer": "^9.0.3",
"sequelize": "^6.37.8"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@vitest/coverage-v8": "^4.1.9",
"@vitest/ui": "^4.1.8",
"eslint": "^10.6.0",
"eslint-plugin-es-x": "^9.7.0",
"eslint-plugin-n": "^18.2.1",
"eslint-plugin-security": "^4.0.1",
"globals": "^17.7.0",
"nodemon": "^3.1.14",
"vite": "^8.1.2",
"vitest": "^4.1.8"
}
}