-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 KB
/
package.json
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
{
"name": "idle-intranet-service",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"vite\" \"node server/index.js\"",
"server": "node server/index.js",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint .",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"gh-pages": "^6.1.1",
"prettier": "^3.3.2",
"stylelint": "^16.6.1",
"stylelint-config-standard": "^36.0.1"
},
"dependencies": {
"axios": "^1.7.2",
"bcrypt": "^5.1.1",
"cloudinary": "^2.2.0",
"concurrently": "^8.2.2",
"cors": "^2.8.5",
"dayjs": "^1.11.11",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-session": "^1.18.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"sqlite3": "^5.1.7",
"vite": "^5.2.0"
}
}