forked from javascript-project-3/project-JS-3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 716 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 716 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
{
"scripts": {
"serve:frontend": "live-server client --host=localhost --port=5500 --no-browser",
"serve:backend": "json-server ./server/db/data.json",
"tailwind": "tailwindcss -i ./client/css/tailwind.css -o ./client/css/main.css --watch",
"start": "run-p serve:* tailwind"
},
"devDependencies": {
"eslint": "^8.45.0",
"json-server": "^0.17.3",
"live-server": "^1.2.2",
"npm-run-all": "^4.1.5",
"postcss-import": "^15.1.0",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.4.1",
"tailwindcss": "^3.3.3"
},
"name": "project-js-3",
"version": "1.0.0",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"description": ""
}