-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 2.41 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
{
"name": "gamebryo-plugin-management",
"version": "0.3.10",
"description": "Management for gamebryo plugins",
"main": "./out/index.js",
"repository": "",
"scripts": {
"webpack": "webpack --config webpack.config.js --progress --profile --color",
"webpack_async": "webpack --config webpack_async.config.js --entry ./node_modules/loot/async.js --output-filename async.js",
"copy_esptk": "copyfiles -f ./node_modules/esptk/build/Release/esptk.node ./dist",
"copy_loot": "copyfiles -f ./node_modules/loot/build/Release/node-loot.node ./dist && copyfiles -f ./node_modules/loot/loot_api/loot.dll ./dist && copyfiles -f ./src/loot_icon.png ./dist",
"copy_async": "npm run webpack_async && copyfiles -f ./node_modules/loot/bindings.js ./dist",
"copy_assets": "copyfiles -f src/stylesheets/plugin_management.scss dist && copyfiles -f src/language.json dist",
"build": "npm run webpack && npm run copy_esptk && npm run copy_loot && npm run copy_async && npm run copy_assets && extractInfo",
"installDev": "copyfiles -u 1 dist/**/* ../../out/bundledPlugins/gamebryo-plugin-management",
"buildDev": "npm run build && npm run installDev"
},
"author": "Black Tree Gaming Ltd.",
"license": "GPL-3.0",
"devDependencies": {
"@types/cytoscape": "3.2.7",
"@types/immutability-helper": "^2.6.3",
"@types/js-yaml": "^3.11.2",
"@types/react": "^16.4.11",
"@types/react-bootstrap": "^0.32.25",
"@types/react-dom": "^16.0.7",
"@types/react-faux-dom": "^4.1.1",
"@types/react-redux": "^6.0.6",
"@types/react-router": "^4.0.30",
"@types/react-select": "^1.2.1",
"@types/redux": "^3.6.0",
"@types/redux-thunk": "^2.1.0",
"bluebird": "^3.5.1",
"copyfiles": "^2.1.1",
"cytoscape": "^3.2.16",
"cytoscape-cose-bilkent": "^4.0.0",
"cytoscape-edgehandles": "^3.5.1",
"esptk": "Nexus-Mods/node-esptk#15918-starfield-update",
"i18next": "^19.8.4",
"immutability-helper": "^2.7.1",
"js-yaml": "^3.12.0",
"json-loader": "^0.5.7",
"loot": "Nexus-Mods/node-loot#libloot_0.24.5",
"markdown-ast": "^0.2.1",
"prop-types": "^15.6.2",
"react": "^16.8.6",
"react-dnd": "^7.4.5",
"react-dom": "^16.8.6",
"react-i18next": "^11.8.5",
"react-select": "^1.2.1",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"ts-loader": "^9.2.6",
"vortex-api": "Nexus-Mods/vortex-api",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.1"
}
}