-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 952 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 952 Bytes
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
{
"name": "plume",
"version": "0.1.0",
"private": false,
"description": "Rewrite technical resume bullets into high-impact statements, with every missing metric turned into a fill-in-the-blank field.",
"type": "module",
"license": "MIT",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "concurrently -k -n SERVER,VITE -c blue,magenta \"npm:dev:server\" \"npm:dev:client\"",
"dev:server": "node --watch server/index.js",
"dev:client": "vite",
"build": "vite build",
"start": "cross-env NODE_ENV=production node server/index.js",
"preview": "vite preview"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.60.0",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.2",
"cross-env": "^7.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vite": "^6.0.7"
}
}