-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
{
"name": "reactron-prototyping",
"version": "1.0.0",
"description": "",
"keywords": [],
"homepage": "https://github.com/circled9/reactron-prototyping#readme",
"bugs": {
"url": "https://github.com/circled9/reactron-prototyping/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/circled9/reactron-prototyping.git"
},
"license": "ISC",
"author": "",
"main": "dist/main.js",
"scripts": {
"prebuild": "npm run clean",
"build": "tsc && node tasks.js build",
"clean": "node tasks.js clean",
"dev": "npm start & tsc -w & node tasks.js watch",
"format": "prettier --write ./src/**/*.{ts,tsx}",
"prestart": "npm run build",
"start": "electron dist/main.js"
},
"dependencies": {
"electron": "^18.3.7",
"electron-reload": "^1.5.0",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@types/babel__core": "^7.1.12",
"@types/babel__template": "^7.0.3",
"@types/electron": "^1.6.10",
"@types/node": "^14.14.6",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"esbuild": "^0.8.4",
"ncp": "^2.0.0",
"prettier": "^2.1.2",
"sane": "^4.1.0",
"typescript": "^4.0.5"
}
}