-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
141 lines (141 loc) · 6.84 KB
/
package.json
File metadata and controls
141 lines (141 loc) · 6.84 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "orbit-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"preinstall": "yarn electron:unpatch",
"postinstall": "npx patch-package && yarn electron:patch:if-exists",
"bootstrap": "./bin/bootstrap",
"clean": "bin/clean",
"clean:all": "bin/clean --modules --data --build --apps",
"clean:workspace": "bin/clean --data --apps",
"clean:repo": "bin/clean --apps --build --modules",
"clean:apps": "bin/clean --apps",
"clean:build": "bin/clean --build",
"clean:modules": "bin/clean --modules",
"clean:data": "bin/clean --data",
"clean:devtools-extensions": "rm -r ~/Library/Application Support/Electron/extensions/*",
"start": "yarn fix-permissions && cd example-workspace && NODE_ENV=development orbit ws --logLevel 1",
"start:loud": "yarn fix-permissions && cd example-workspace && NODE_ENV=development orbit ws --logLevel 3",
"start:louder": "yarn fix-permissions && cd example-workspace && NODE_ENV=development orbit ws --logLevel 6",
"start:plain-react": "yarn clean:apps && cd example-workspace && PLAIN_REACT=1 NODE_ENV=development orbit ws --logLevel 3",
"start:noworkers": "yarn fix-permissions && cd example-workspace && DISABLE_WORKERS=true NODE_ENV=development orbit ws --logLevel 3",
"start:dev": "yarn fix-permissions && cd example-workspace && NODE_ENV=development orbit ws --dev --logLevel 4",
"start:dev:verbose": "cd example-workspace && NODE_ENV=development orbit ws --dev --logLevel 6",
"start:dev:debug": "cd example-workspace && NODE_ENV=development orbit ws --dev --logLevel 9",
"start:dev:plain-react": "yarn clean:apps && cd example-workspace && PLAIN_REACT=1 NODE_ENV=development orbit ws --dev --logLevel 4",
"start:dev:all": "DEV_ALL_APPS=1 yarn start:dev",
"start:dev:clean": "cd example-workspace && NODE_ENV=development orbit ws --dev --logLevel 2 --clean",
"start:dev:noworkers": "(cd example-workspace && NODE_ENV=development DISABLE_WORKERS=true orbit ws --dev --logLevel 4)",
"start:dev:noworkers:debug": "(cd example-workspace && DISABLE_WORKERS=true orbit ws --dev --logLevel 8)",
"start:dev:ocr": "(cd example-workspace && NODE_ENV=development ENABLE_OCR=true DISABLE_WORKERS=true orbit ws --dev --logLevel 4)",
"start:dev:noworkers:clean": "(cd example-workspace && NODE_ENV=development DISABLE_WORKERS=true orbit ws --dev --logLevel 6 --clean)",
"start:devtools": "overmind-devtools & (cd app/orbit-repl && yarn start)",
"electron:patch:if-exists": "if [ -d ~/github/electron-gn/src/out/Release ]; then yarn electron:patch; fi",
"electron:patch": "cd node_modules/electron && mv dist dist2 || true && ln -s ~/github/electron-gn/src/out/Release dist || true",
"electron:unpatch": "if [ -f node_modules/electron/dist2 ]; then rm node_modules/electron/dist && mv node_modules/electron/dist2 node_modules/electron/dist; fi",
"playground:start": "cd projects/playground && yarn start",
"fix-permissions": "chmod ug+x app/orbit/_/index.js",
"site:serve": "cd projects/site && yarn serve",
"site:build": "cd projects/site && yarn build",
"site:start": "cd projects/site && yarn start",
"site:deploy": "cd projects/site && yarn deploy",
"build": "tsc -b",
"build:watch": "tsc -b -w --preserveWatchOutput",
"build:example-workspace": "(cd example-workspace && orbit ws --build --logLevel 1)",
"build:app": "cd app/build-orbit && yarn run build:app",
"build:app:resume": "cd app/build-orbit && yarn run build:app:resume",
"build:apps": "lerna exec --concurrency 1 --scope '@o/*-app' --no-bail -- orbit build --force --logLevel 1 || true",
"build:apps:fast": "(cd example-workspace && orbit ws --logLevel 1) & sleep 8 && yarn build:apps && kill $!",
"publish:app": "cd app/build-orbit && yarn run publish",
"publish:packages": "lerna publish",
"publish:apps": "lerna exec --concurrency 1 --scope '@o/*-app' --no-bail -- orbit publish --ignore-version",
"publish:apps:patch": "lerna exec --concurrency 1 --scope '@o/*-app' --no-bail -- orbit publish --bump-version patch",
"publish:apps:patch:ignore-build": "lerna exec --scope '@o/*-app' --no-bail -- orbit publish --bump-version patch --ignore-version --ignore-build",
"test:built:app": "cd app/build-orbit && yarn run test:built:app",
"dev:open:datafolder": "open ~/Library/Application\\ Support/Electron",
"dev:open:db": "open ~/Library/Application\\ Support/Electron/development_database.sqlite",
"test": "jest",
"oracle:edit": "cd app/oracle && yarn edit"
},
"dependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.6.0",
"@babel/runtime": "^7.4.5",
"@types/bonjour": "3.5.5",
"@types/event-kit": "2.4.0",
"@types/fs-extra": "5.1.0",
"@types/jest": "24.0.11",
"@types/lodash": "4.14.135",
"@types/node": "12.7.4",
"@types/react": "16.9.2",
"@types/react-dom": "16.9.0",
"@types/reconnectingwebsocket": "1.0.1",
"@types/w3c-css-typed-object-model-level-1": "20180410.0.1",
"@types/webpack": "4.39.1",
"@types/webpack-env": "1.14.0",
"@types/ws": "5.1.2",
"@types/zen-observable": "0.8.0",
"@typescript-eslint/eslint-plugin": "1.5.0",
"@typescript-eslint/parser": "1.5.0",
"babel-eslint": "^8.2.3",
"confusing-browser-globals": "1.0.7",
"electron": "^12.0.1",
"eslint": "5.16.0",
"eslint-config-prettier": "4.1.0",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jest": "22.4.1",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-react": "7.12.4",
"global": "^4.3.2",
"jest": "24.8.0",
"lerna": "^3.16.4",
"lerna-changelog": "^0.8.2",
"mobx": "^5.14.0",
"patch-package": "6.1.2",
"prettier": "^1.18.2",
"sb-promisify": "^2.0.2",
"sqlite": "^3.0.3",
"ts-jest": "24.0.0",
"typescript": "3.7.1-rc",
"webpack-cli": "^3.3.7"
},
"resolutions": {
"electron": "12.0.1",
"framer-motion": "1.6.15",
"react": "16.9.0",
"react-dom": "16.9.0",
"node-gyp": "5.0.3",
"node-abi": "2.11.0",
"@types/lodash": "4.14.135",
"@types/event-kit": "2.4.0",
"@types/reconnectingwebsocket": "1.0.1",
"@types/ws": "5.1.2",
"@types/zen-observable": "0.8.0",
"@types/node": "12.7.4",
"@types/jest": "24.0.11",
"@types/fs-extra": "5.1.0",
"@types/react": "16.9.2",
"@types/react-dom": "16.9.0",
"lodash": "4.17.11",
"date-fns": "2.0.0-alpha.7",
"graphql": "14.4.2",
"typeorm": "0.3.0-alpha.23",
"ws": "7.0.1",
"babel-loader": "8.0.6",
"babel-polyfill": "7.0.0-beta.3",
"@babel/core": "^7.6.0",
"@babel/runtime": "7.4.5",
"@babel/cli": "7.4.4",
"@babel/preset-env": "7.6.0",
"@babel/code-frame": "7.0.0",
"@babel/generator": "^7.6.0",
"@babel/parser": "^7.5.5",
"@babel/traverse": "^7.6.0",
"@babel/types": "^7.6.1",
"@babel/preset-react": "7.0.0"
}
}