-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.68 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
{
"name": "multitenantnotesapp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint",
"setup-db": "node scripts/setup-db.js",
"reset-db": "node scripts/setup-db.js",
"test": "cross-env NODE_OPTIONS=\"--experimental-vm-modules\" jest",
"test:simple": "cross-env SKIP_DB_SETUP=true NODE_OPTIONS=\"--experimental-vm-modules\" jest tests/api/simple-*.test.js",
"test:watch": "cross-env NODE_OPTIONS=\"--experimental-vm-modules\" jest --watch",
"test:coverage": "cross-env NODE_OPTIONS=\"--experimental-vm-modules\" jest --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:all": "npm run test && npm run test:e2e",
"test:comprehensive": "node tests/run-all-tests.js"
},
"dependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.10",
"bcryptjs": "^3.0.2",
"geist": "^1.5.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.18.1",
"next": "15.5.3",
"react": "19.1.0",
"react-dom": "19.1.0"
},
"devDependencies": {
"@babel/preset-env": "^7.28.3",
"@eslint/eslintrc": "^3",
"@playwright/test": "^1.55.0",
"@tailwindcss/postcss": "^4",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/supertest": "^6.0.3",
"babel-jest": "^30.1.2",
"cross-env": "^10.0.0",
"eslint": "^9",
"eslint-config-next": "15.5.3",
"jest": "^30.1.3",
"playwright": "^1.55.0",
"supertest": "^7.1.4",
"tailwindcss": "^4",
"ts-jest": "^29.4.2",
"typescript": "^5"
}
}