-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 843 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 843 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
{
"name": "reading-challenge",
"private": true,
"version": "1.0.0",
"workspaces": [
"client"
],
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "nodemon server/index.js",
"dev:client": "npm --workspace client run dev",
"build": "npm --workspace client run build",
"start": "NODE_ENV=production node server/index.js",
"test": "node --test",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"bcryptjs": "^3.0.3",
"better-sqlite3": "^11.10.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-session": "^1.18.1"
},
"devDependencies": {
"@types/react": "^19.2.14",
"concurrently": "^9.1.2",
"nodemon": "^3.1.10",
"prettier": "^3.8.1"
}
}