This repository was archived by the owner on Apr 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.59 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.59 KB
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
39
40
41
42
43
44
45
46
47
48
{
"name": "mixing-console-example",
"version": "0.1.1",
"description": "Audio mixing console UI",
"author": "Dmitriy Poliakov aka Wisdman <wisdman@ajaw.it> (https://github.com/wisdman)",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/wisdman/mixing-console-example.git"
},
"homepage": "https://github.com/wisdman/mixing-console-example",
"bugs": "https://github.com/wisdman/mixing-console-example/issues",
"browserslist": [
"last 1 Chrome versions",
"last 1 Firefox versions",
"last 1 iOS versions",
"last 1 Safari versions"
],
"dependencies": {},
"devDependencies": {
"autoprefixer": "^9.4.4",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.1.0",
"extract-loader": "^3.1.0",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"postcss-csso": "^3.0.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"raw-loader": "^1.0.0",
"source-map-loader": "^0.2.4",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"webpack-pwa-manifest": "^4.0.0"
},
"scripts": {
"bandle": "npm run clean && npm run build && cd dist && tar -zcvf $npm_package_name-$npm_package_version.tar.gz *",
"build": "NODE_ENV='production' webpack --config ./webpack.config.js",
"clean": "rm -rf ./dist/*",
"serve": "npm run build && http-server ./dist",
"start": "webpack-dev-server --config ./webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
}
}