-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.18 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.18 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "oss-oopssec-store",
"author": "kOaDT",
"version": "2.15.0",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kOaDT/oss-oopssec-store"
},
"bugs": {
"url": "https://github.com/kOaDT/oss-oopssec-store/issues"
},
"homepage": "https://github.com/kOaDT/oss-oopssec-store#readme",
"keywords": [
"oss",
"oopssec",
"store",
"vulnerable",
"web",
"security"
],
"description": "OSS – OopsSec Store, a vulnerable e-commerce for modern web security training.",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"docs:dev": "npm run dev --prefix docs",
"docs:build": "npm run build --prefix docs",
"docs:lint": "npm run lint --prefix docs",
"docs:format": "npm run format --prefix docs",
"docs:format:check": "npm run format:check --prefix docs",
"prepare": "husky",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"db:seed": "tsx prisma/seed.ts",
"setup": "bash scripts/setup.sh",
"docker:build": "docker compose build",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"docker:logs": "docker compose logs -f",
"docker:reset": "docker compose down -v && docker compose up -d",
"test": "jest --passWithNoTests",
"test:unit": "cross-env SKIP_SERVER_CHECK=1 jest --passWithNoTests --testPathPatterns=tests/unit",
"test:api": "jest --passWithNoTests --testPathPatterns=tests/api",
"test:e2e": "cypress run",
"test:e2e:open": "cypress open",
"test:ci": "jest && cypress run"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md,html}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@prisma/client": "^6.19.1",
"@tailwindcss/typography": "^0.5.19",
"better-sqlite3": "^12.6.2",
"canvas-confetti": "^1.9.4",
"jsonwebtoken": "^9.0.3",
"libxmljs2": "^0.37.0",
"next": "15.2.2",
"pdf-lib": "^1.17.1",
"pino": "^10.3.1",
"prisma": "^6.19.1",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-markdown": "^10.1.0",
"react-pdf": "^10.3.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@types/better-sqlite3": "^7.6.13",
"@types/canvas-confetti": "^1.9.0",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"cross-env": "^7.0.3",
"cypress": "^15.10.0",
"dotenv": "^17.2.3",
"eslint": "^9",
"eslint-config-next": "16.0.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"tailwindcss": "^4",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5",
"wait-on": "^9.0.4"
}
}