forked from gbowne1/codestream
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.16 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.16 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
{
"name": "devstream",
"version": "1.0.0",
"description": "A live streaming platform for developers.",
"main": "src/js/main.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint \"**/*.{js,jsx,mjs,cjs}\"",
"lint:fix": "eslint \"**/*.{js,jsx,mjs,cjs}\" --fix",
"format": "prettier --write .",
"check:format": "prettier --check .",
"lint:ci": "npm run lint && npm run check:format",
"api": "node server.js"
},
"keywords": [
"pwa",
"web-dev",
"streaming",
"vite",
"vanilla-js"
],
"author": "gbowne1",
"license": "ISC",
"type": "module",
"dependencies": {
"@fortawesome/fontawesome-free": "^6.5.2",
"bcrypt": "^6.0.0",
"bootstrap": "^5.3.3",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"mongoose": "^9.1.5",
"morgan": "^1.10.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.28.6",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.2.5",
"vite": "^5.2.11"
}
}