forked from stevekinney/web-security
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.94 KB
/
package.json
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": "web-security",
"version": "1.0.0",
"description": "Examples and exercises for the Web Security course for Frontend Masters.",
"type": "module",
"main": "index.js",
"scripts": {
"start": "node scripts/start.js",
"clean": "node scripts/remove-databases.js",
"test": "vitest"
},
"imports": {
"#shared": "./shared/index.js",
"#shared/*": "./shared/*"
},
"homepage": "https://frontendmasters.com/courses/web-security-v2/",
"repository": {
"type": "git",
"url": "https://github.com/stevekinney/web-security.git"
},
"keywords": [
"frontendmasters",
"web security",
"security"
],
"author": "Steve Kinney <hello@stevekinney.net> (https://stevekinney.net)",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"chalk": "^5.3.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-handlebars": "^7.1.2",
"express-rate-limit": "^7.2.0",
"express-session": "^1.18.0",
"express-validator": "^7.0.1",
"file-type": "^19.0.0",
"helmet": "^7.1.0",
"lit": "^3.1.3",
"lodash": "^4.17.21",
"mime": "^4.0.3",
"multer": "^1.4.5-lts.1",
"postcss-lit": "^1.1.1",
"sanitize-filename": "^1.6.3",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"tailwind-merge": "^2.3.0",
"typescript": "^5.4.5",
"uuid": "^9.0.1",
"vite": "^5.2.11",
"vitest": "^1.6.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/multer": "^1.4.11",
"@types/uuid": "^9.0.8",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"fast-glob": "^3.3.2",
"nodemon": "^3.1.0",
"postcss": "^8.4.38",
"prompts": "^2.4.2",
"tailwindcss": "^3.4.3",
"yargs": "^17.7.2"
}
}