forked from flexdinesh/dev-landing-page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 793 Bytes
/
package.json
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
{
"name": "dev-landing-page",
"version": "1.0.0",
"description": "Minimal landing page for developers.",
"main": "scripts/build.js",
"type": "module",
"scripts": {
"build": "rm -rf dist && cp -r src/ dist && node scripts/build.js",
"dev": "npm run build && concurrently 'nodemon -e js,json,yaml' 'sleep 1 && live-server dist'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/olmesm/dev-landing-page.git"
},
"keywords": [],
"author": "Oliver Smit <github.com/olmesm>",
"bugs": {
"url": "https://github.com/olmesm/dev-landing-page/issues"
},
"homepage": "https://github.com/olmesm/dev-landing-page#readme",
"dependencies": {
"yaml": "^2.1.1"
},
"devDependencies": {
"concurrently": "^7.4.0",
"live-server": "^1.2.2",
"nodemon": "^2.0.20"
}
}