-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 728 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 728 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
{
"name": "la-music",
"version": "1.0.0",
"description": "A music sequencer for non musicians",
"private": true,
"scripts": {
"build": "webpack --mode=production",
"develop": "webpack --mode=development --watch",
"serve": "live-server --entry-file=dist/index.html",
"dev-serve": "npm-run-all --parallel develop serve",
"deploy": "gh-pages -d dist",
"publish": "run-s build deploy"
},
"keywords": [],
"author": "Akash Meshram",
"license": "MIT",
"devDependencies": {
"copy-webpack-plugin": "^9.0.1",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "^5.5.0",
"live-server": "^1.2.1",
"npm-run-all": "^4.1.5",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.1"
}
}