-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 2.05 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
62
63
64
{
"name": "basic",
"version": "0.0.0",
"main": "app/main/index.ts",
"scripts": {
"start": "electron dist/main.js",
"copyAddon": "ts-node package-scripts/copyAddon.ts",
"build": "yarn copyAddon && yarn build:renderer && yarn build:engine && yarn build:main",
"build:main": "webpack --config webpack.config.main.dev.js",
"build:renderer": "webpack --config webpack.config.renderer.dev.js",
"build:engine": "webpack --config webpack.config.engine.dev.js"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.23.7",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"babel-preset-mobx": "^2.0.0",
"css-loader": "^6.7.3",
"electron": "^25.5.0",
"fs-extra": "^11.1.1",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.7.5",
"postcss": "^8.4.21",
"postcss-loader": "^7.2.4",
"sass": "^1.62.0",
"sass-loader": "^13.2.2",
"style-loader": "^3.3.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"babel-loader": "^9.1.3",
"history": "^5.3.0",
"mobx": "^6.12.0",
"mobx-react": "^7.6.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.43",
"pluralize": "^5.0.0",
"prettier": "^2.8.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-moment": "^1.1.3",
"react-router": "^6.21.3",
"react-router-dom": "^6.21.3",
"starknet": "^5.24.3"
},
"optionalDependencies": {
"@taco-paco/alpaca-addon-mac-arm64": "^0.0.1",
"@taco-paco/alpaca-addon-mac-x64": "^0.0.1",
"@taco-paco/alpaca-addon-win-x64": "^0.0.1",
"@taco-paco/alpaca-addon-linux-x64": "^0.0.2",
"@taco-paco/alpaca-addon-linux-arm64": "^0.0.1"
}
}