-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.13 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.13 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
{
"name": "screenreaderstudio-be",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"postinstall": "npx puppeteer browsers install",
"dev": "NODE_ENV=development node src/index.js",
"start": "NODE_ENV=production node src/index.js",
"start:dev": "NODE_ENV=development node src/index.js",
"start:prod": "NODE_ENV=production node src/index.js",
"prepare": "husky"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@supabase/supabase-js": "^2.50.3",
"axe-core": "^4.10.3",
"axios": "^1.10.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.0.1",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"puppeteer": "^24.12.0"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.30.1",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2"
}
}