-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.75 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
{
"name": "miso-chat",
"version": "0.4.21",
"private": true,
"main": "server.js",
"scripts": {
"start": "node server.js",
"lint": "npx eslint server.js security.js lib/ tests/",
"test": "node --check server.js && node --require ./tests/setup/load-first.js --test tests/*.test.js",
"test:ci": "NODE_OPTIONS='--test-reporter=tap' npm test > test-results.json 2>&1",
"release:readiness": "./scripts/release-readiness-check.sh",
"smoke:deploy": "./scripts/post-deploy-smoke.sh",
"smoke:pre-merge": "./scripts/ci-pre-merge-smoke.sh",
"audit:deps": "npm audit --omit=dev --audit-level=high",
"android:sync": "npx cap sync android",
"android:build": "npx cap sync android && cd android && ./gradlew assembleDebug",
"android:run": "npx cap sync android && npx cap run android",
"build:csp-hashes": "node scripts/build-csp-hashes.js",
"check:csp-hashes": "node scripts/build-csp-hashes.js --check",
"check:duplicate-modules": "node scripts/check-duplicate-modules.js"
},
"overrides": {
"brace-expansion": "^5.0.8",
"tar": "^7.5.21"
},
"dependencies": {
"better-sqlite3": "^13.0.0",
"connect-redis": "^10.0.0",
"cors": "^2.8.5",
"dotenv": "^17.0.0",
"express": "^5.0.0",
"express-rate-limit": "^8.0.0",
"express-session": "^1.18.1",
"multer": "^2.0.2",
"openid-client": "^6.8.4",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"redis": "^6.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@capacitor/android": "^8.1.0",
"@capacitor/app": "^8.0.1",
"@capacitor/browser": "^8.0.2",
"@capacitor/cli": "^8.1.0",
"@capacitor/core": "^8.1.0",
"@capgo/capacitor-updater": "^8.43.10"
},
"allowScripts": {
"better-sqlite3@13.0.3": true
}
}