-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.48 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
{
"name": "stashplugintemplate",
"version": "0.1.0",
"description": "A template for creating plugins for Stash using the native plugin API.",
"main": "./src/main.ts",
"scripts": {
"build": "webpack --config webpack.prod.js",
"dev": "webpack --config webpack.dev.js",
"start": "npm run watch",
"watch": "webpack --config webpack.dev.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Valkyr-JS/StashPluginTemplate.git"
},
"author": "Valkyr-JS",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Valkyr-JS/StashPluginTemplate/issues"
},
"homepage": "https://github.com/Valkyr-JS/StashPluginTemplate#readme",
"dependencies": {
"react-intl": "^6.6.8",
"sass": "^1.77.6",
"typescript": "^5.5.3"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@types/mousetrap": "^1.6.15",
"@types/react": "^18.3.3",
"@types/react-bootstrap": "^0.32.36",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"mini-css-extract-plugin": "^2.9.0",
"sass-loader": "^14.2.1",
"ts-loader": "^9.5.1",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"webpack-merge": "^6.0.1"
}
}