forked from LikeLion-FE-JS-Project19/market-karly
-
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) · 816 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 816 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": "Vanilla Project",
"version": "1.0.0",
"description": "멋쟁이 사자처럼 바닐라 프로젝트",
"main": "main.js",
"scripts": {
"start": "npx live-server client --host=localhost --port=5500",
"server": "json-server --watch server/db/data.json --port 3001",
"all": "concurrently \"npm run start \" \"npm run server\""
},
"keywords": [
"html",
"css",
"javascript",
"시맨틱 마크업",
"웹표준",
"함수형 프로그래밍"
],
"author": "담당자",
"license": "ISC",
"devDependencies": {
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.3"
},
"dependencies": {
"concurrently": "^7.6.0",
"json-server": "^0.17.1",
"live-server": "^1.2.2"
}
}