-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.85 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "BalenaAudioManager",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:development": "webpack --config webpack.development.js",
"build:production": "webpack --config webpack.prod.js",
"start:watch": "webpack --config webpack.development.js --watch",
"start:development": "webpack --config webpack.development.js && node server.js",
"start:production": "webpack --config webpack.production.js && node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tdesaules/BalenaAudioManager.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tdesaules/BalenaAudioManager/issues"
},
"homepage": "https://github.com/tdesaules/BalenaAudioManager#readme",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@types/socket.io-client": "^1.4.33",
"babel-loader": "^8.1.0",
"balena-sdk": "^13.5.0",
"bulma": "^0.8.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.5.3",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"jayson": "^3.3.3",
"json-rpc-client": "^0.2.2",
"json-rpc2": "^2.0.0",
"jsonrpc-lite": "^2.1.0",
"koa": "^2.12.0",
"koa-static": "^5.0.0",
"koa-webpack": "^5.3.0",
"materialize-css": "^1.0.0-rc.2",
"mini-css-extract-plugin": "^0.9.0",
"node-fetch": "^2.6.0",
"node-sass": "^4.14.1",
"pug": "^2.0.4",
"pug-loader": "^2.4.0",
"sass-loader": "^8.0.2",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"style-loader": "^1.2.1",
"svelte": "^3.22.3",
"svelte-loader": "^2.13.6",
"svelte-preprocess": "^3.7.4",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {}
}