-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.02 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.02 KB
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
{
"name": "typescript-react-electron-boilerplate",
"version": "1.0.0",
"description": "Application boilerplate for Typescript, React & Electron",
"main": "index.js",
"author": "Ivan Velasquez <ivan@densitylabs.io>",
"license": "MIT",
"private": false,
"scripts": {
"build": "./node_modules/webpack/bin/webpack.js --config ./webpack.config.js",
"start": "yarn build && electron ./build/electron.js"
},
"devDependencies": {
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"autoprefixer": "^9.8.0",
"copy-webpack-plugin": "^6.0.2",
"css-loader": "^3.5.3",
"electron": "^9.0.2",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"postcss-loader": "^3.0.0",
"precss": "^4.0.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}