-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.56 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
65
66
67
{
"name": "@condict/app",
"productName": "Condict",
"version": "0.1.0",
"private": true,
"description": "The main Electron app for Condict.",
"homepage": "https://condict.app",
"repository": "github:arimah/condict",
"author": "Alice Heurlin <alice.s.heurlin@gmail.com>",
"license": "MIT",
"main": "dist/main.js",
"scripts": {
"start": "cross-env NODE_ENV=development CONDICT_DATA_DIR=. electron .",
"start:prod": "cross-env NODE_ENV=production electron .",
"build": "npm-run-all --silent build:graphql build:main",
"build:main": "rollup -c",
"build:graphql": "condict-graphql-typer --schema-dir ../../graphql-schema --target=client --src=./src/renderer/ --defs=./src/renderer/graphql.ts",
"build:native": "electron-rebuild -f -w bcrypt,better-sqlite3,fsevents,@condict/server && node ../../scripts/native-target.cjs set app",
"build:native-if-needed": "node ../../scripts/native-target.cjs test app || npm run -s build:native",
"build:dist": "electron-builder --config electron-builder.yml",
"bundle": "npm-run-all --silent --print-label build build:native-if-needed build:dist",
"watch": "npm-run-all --silent --print-label --serial build:native-if-needed --parallel watch:main watch:graphql",
"watch:main": "rollup -c --watch",
"watch:graphql": "condict-graphql-typer --schema-dir ../../graphql-schema --target=client --src=./src/renderer/ --defs=./src/renderer/graphql.ts --watch"
},
"dependencies": {
"@condict/platform": "^0.1.0",
"@condict/server": "^0.1.0",
"chokidar": "^3.5.3",
"graphql": "^16.6.0",
"node-fetch": "^2.6.7",
"ws": "^8.11.0"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
},
"devDependencies": {
"@condict/graphql-typer": "^0.1.0",
"@condict/inflect": "^0.1.0",
"@condict/rich-text-editor": "^0.1.0",
"@condict/table-editor": "^0.1.0",
"@condict/ui": "^0.1.0",
"@electron/rebuild": "^3.2.10",
"@fluent/bundle": "^0.17.1",
"@fluent/react": "^0.14.1",
"@types/node": "^18.11.10",
"@types/node-fetch": "^2.6.2",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@types/shallowequal": "^1.1.1",
"@types/styled-components": "^5.1.26",
"@types/ws": "^8.5.3",
"cross-env": "^7.0.3",
"electron": "^22.0.0",
"electron-builder": "^24.2.1",
"immer": "^9.0.16",
"mdi-react": "^9.0.0",
"nanoid": "^3.3.4",
"node-abi": "^3.30.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"rimraf": "^3.0.2",
"shallowequal": "^1.1.0",
"styled-components": "^5.3.6"
}
}