-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.3 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.3 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
37
38
39
40
41
42
43
44
45
46
{
"name": "the-log",
"version": "0.1.0",
"private": true,
"main": "src/electron.js",
"homepage": "../build/",
"dependencies": {
"immutable": "^3.8.2",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"react": "^16.5.1",
"react-dom": "^16.5.1",
"react-scripts-ts": "2.17.0",
"slate": "^0.40.2",
"slate-react": "^0.18.5"
},
"scripts": {
"start": "react-scripts-ts start",
"build": "react-scripts-ts build",
"electron": "concurrently \"npm run start\" \"ELECTRON_START_URL=http://localhost:3000 electron .\"",
"electron-win": "concurrently \"npm run start\" \"set ELECTRON_START_URL=http://localhost:3000 && electron .\"",
"electron-build": "npm run build && electron-builder build",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject"
},
"build": {
"appId": "com.cryptacular.thelog",
"productName": "The Log",
"files": [
"build/**/*",
"src/**/*"
]
},
"devDependencies": {
"@types/jest": "^23.3.2",
"@types/lodash": "^4.14.116",
"@types/node": "^10.9.4",
"@types/react": "^16.4.14",
"@types/react-dom": "^16.0.7",
"@types/slate-react": "^0.18.0",
"concurrently": "^4.0.1",
"electron": "^2.0.10",
"electron-builder": "^20.28.4",
"typescript": "^3.0.3"
}
}