-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.05 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 3.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "prosalemanager",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "cross-env NODE_ENV=development concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:client": "cd client && npm run dev",
"dev:server": "cd server && cross-env NODE_ENV=development npm run dev",
"build": "npm run build:client && npm run build:server",
"build:client": "cd client && npm run build",
"build:server": "cd server && npm run build",
"install:all": "npm install && cd client && npm install && cd ../server && npm install",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"test:api": "jest tests/api --coverage",
"test:unit": "jest tests/unit --coverage",
"test:e2e": "jest tests/e2e --coverage",
"test:integration": "jest tests/integration --coverage",
"test:fix": "jest --passWithNoTests --verbose",
"test:e2e:ci": "NODE_OPTIONS=--experimental-vm-modules jest tests/e2e --ci --coverage --watchAll=false",
"test:e2e:watch": "NODE_OPTIONS=--experimental-vm-modules jest tests/e2e --watch",
"seed:full-reset": "tsx src/seed/full-reset-seed.ts",
"lint": "npm run lint:server && npm run lint:client",
"lint:server": "cd server && npm run lint",
"lint:client": "cd client && npm run lint",
"lint:fix": "npm run lint:server:fix && npm run lint:client:fix",
"lint:server:fix": "cd server && npm run lint:fix",
"lint:client:fix": "cd client && npm run lint:fix",
"format": "npm run format:server && npm run format:client",
"format:server": "cd server && npm run format",
"format:client": "cd client && npm run format",
"type-check": "npm run type-check:server && npm run type-check:client",
"type-check:server": "cd server && npm run type-check",
"type-check:client": "cd client && npm run type-check",
"ci:test": "npm run lint && npm run test:ci && npm run build",
"ci:full": "npm run ci:test && npm run test:e2e:ci"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.58.1",
"@types/bcrypt": "^6.0.0",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^5.0.3",
"@types/jest": "^29.5.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/selenium-webdriver": "^4.1.28",
"@types/supertest": "^6.0.3",
"@vitest/ui": "^3.2.4",
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.2",
"chromedriver": "^138.0.3",
"concurrently": "^9.1.2",
"cross-env": "^10.1.0",
"dotenv": "^16.5.0",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"express": "^5.1.0",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"prettier": "^3.6.2",
"selenium-webdriver": "^4.33.0",
"tailwindcss": "^3.4.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"vitest": "^3.2.4"
},
"dependencies": {
"supertest": "^6.3.3"
},
"overrides": {
"punycode": "^2.3.1",
"eslint": "^9.31.0"
}
}