-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 774 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 774 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
{
"name": "jukeboxd",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\"",
"start": "cd packages/react-frontend && npm run dev",
"format": "npx prettier . --write",
"lint": "npx eslint ."
},
"workspaces": [
"packages/*"
],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint-config-prettier": "9.1.0",
"eslint-config-react": "1.1.7",
"eslint-plugin-prettier": "^5.1.3",
"nodemon": "^3.1.0",
"prettier": "3.2.5"
},
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"styled-components": "^6.1.11",
"vite": "^5.2.11"
}
}