-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.17 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.17 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
{
"name": "fetchcv",
"version": "0.0.1",
"description": "Your developer profile",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"watch-tailwind": "npx @tailwindcss/cli -i ./public/styles/tailwind.config.css -o ./public/styles/tailwind.css --watch",
"watch-typescript": "tsc -w",
"watch": "npm-run-all --parallel watch-tailwind watch-typescript",
"watch-all": "npm-run-all --parallel dev watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FetchCV/fetchcv.git"
},
"author": "Ave and Hamza",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/FetchCV/fetchcv/issues"
},
"homepage": "https://github.com/FetchCV/fetchcv#readme",
"dependencies": {
"@tailwindcss/cli": "^4.1.8",
"axios": "^1.7.9",
"dotenv": "^16.4.7",
"ejs": "^3.1.10",
"express": "^4.21.2",
"express-session": "^1.18.1",
"mongoose": "^8.9.2",
"tailwindcss": "^4.1.7",
"uuid": "^11.1.0"
},
"devDependencies": {
"nodemon": "^3.1.9",
"npm-run-all": "^4.1.5",
"typescript": "^5.7.2"
}
}