-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 740 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 740 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
{
"name": "pictionary-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"heroku-prebuild": "npm install && cd client && npm install && VITE_BACKEND_URL='https://pixnry.herokuapp.com/' npm run build && cd ..",
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write \"src/**/*.{js,jsx}\""
},
"author": "",
"license": "ISC",
"dependencies": {
"chance": "^1.1.8",
"cors": "^2.8.5",
"express": "^4.17.3",
"grapheme-splitter": "^1.0.4",
"leven": "^3.1.0",
"nanoid": "^3.3.3",
"socket.io": "^4.4.1"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}