-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 836 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 836 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
33
34
35
36
37
38
{
"name": "git-learning-app",
"version": "1.0.0",
"description": "新人エンジニア向けGit学習記憶アプリ",
"main": "index.html",
"scripts": {
"dev": "npx serve .",
"build": "mkdir -p public && cp *.html *.css *.js public/",
"start": "npx serve .",
"test": "echo 'No tests specified'"
},
"keywords": [
"git",
"learning",
"education",
"flashcards",
"version-control",
"engineering"
],
"author": "Git Learning Team",
"license": "MIT",
"devDependencies": {
"serve": "^14.2.1"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/your-username/git-learning-app.git"
},
"homepage": "https://git-learning-app.vercel.app",
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}