-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
33 lines (33 loc) · 1.26 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
{
"name": "sounddeck",
"author": "GeekyEggo",
"license": "MIT",
"scripts": {
"clean": "rm -rf ./node_modules && npm run dist:clean",
"build": "dotnet build ./src/SoundDeck.Plugin/ -c Debug && npx webpack",
"debug:pi": "npx webpack --watch",
"dist": "npm i && npm run dist:clean && npm run dist:build && npm run dist:package",
"dist:clean": "rm -rf ./dist",
"dist:build": "dotnet build ./Src/SoundDeck.Plugin/ -c Release && npx webpack --env dist",
"dist:package": "cd ./tools && ./DistributionTool.exe -b -i ../dist/com.geekyeggo.sounddeck.sdPlugin -o ../dist || exit 0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.0.0",
"file-loader": "^6.2.0",
"style-loader": "^3.3.1",
"webpack": "^5.64.2",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-redux": "^7.2.4",
"react-sharpdeck": "file:./libs/react-sharpdeck",
"react-sortable-hoc": "^1.11.0",
"redux": "^4.1.0"
}
}