-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
117 lines (117 loc) · 4.73 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
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
{
"name": "actually-colab",
"license": "GPL-2.0-only",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/actually-colab/desktop.git"
},
"author": {
"name": "Jeff Taylor-Chang",
"email": "jeff@actuallycolab.org",
"url": "https://github.com/jtaylorchang"
},
"contributors": [
{
"name": "Jeff Taylor-Chang",
"url": "https://github.com/jtaylorchang"
},
{
"name": "Bailey Tincher",
"url": "https://github.com/baileytincher"
}
],
"scripts": {
"start": "concurrently --kill-others \"less-watch-compiler --config less-watcher.config.json\" \"react-app-rewired start\"",
"start:kernel:dev": "jupyter notebook --NotebookApp.open_browser=False --NotebookApp.allow_origin_pat=\"^http:\\/\\/localhost:4000$|^https:\\/\\/.+\\.actuallycolab\\.org$\" --NotebookApp.token=dev",
"start:kernel:dev:autoclean": "bash ./scripts/kernel.dev.sh",
"start:kernel:prod": "jupyter notebook --NotebookApp.open_browser=False --NotebookApp.allow_origin=https://app.actuallycolab.org --NotebookApp.token=prod",
"start:kernel:prod:autoclean": "bash ./scripts/kernel.prod.sh",
"list:kernel": "jupyter notebook list",
"stop:kernel": "jupyter notebook stop",
"stop:kernel:all": "node scripts/stop-all-kernels.js",
"prebuild": "less-watch-compiler --config less-watcher.config.prod.json",
"build": "react-app-rewired build",
"build:client": "cd ../editor/client && git pull && yarn install && yarn build",
"upgrade:client:dev": "yarn build:client && yarn upgrade @actually-colab/editor-client @actually-colab/editor-types",
"upgrade:client:prod": "yarn upgrade @actually-colab/editor-client@latest @actually-colab/editor-types@latest",
"install:client:dev": "yarn build:client && yarn remove @actually-colab/editor-client @actually-colab/editor-types && yarn add file:../editor/client && yarn add -D file:../editor/types",
"install:client:prod": "yarn remove @actually-colab/editor-client @actually-colab/editor-types && yarn add @actually-colab/editor-client && yarn add -D @actually-colab/editor-types",
"postinstall": "husky install && yarn yarn-deduplicate yarn.lock",
"predeploy": "(export REACT_APP_SENTRY_RELEASE=$(git rev-parse --short HEAD); yarn build && source ./scripts/sentry.sh && node scripts/sentry.js)",
"deploy": "netlify deploy --prod",
"test": "react-app-rewired test",
"format": "prettier --config .prettierrc.js --ignore-path .eslintignore --write \"**/*.{ts,js,tsx,css,html,md}\"",
"lint": "eslint --config ./.eslintrc.js --ext .js,.ts,.jsx,.tsx src/",
"lint:aggressive": "eslint --config ./.eslintrc.aggressive.js --ext .js,.ts,.jsx,.tsx src/",
"validate": "yarn tsc --project ./tsconfig.json --noEmit",
"analyze": "yarn build && source-map-explorer build/static/js/*.js"
},
"dependencies": {
"@actually-colab/editor-client": "^0.3.1",
"@jupyterlab/services": "^6.0.7",
"@nteract/markdown": "^4.6.1",
"@nteract/outputs": "^3.0.11",
"@sentry/react": "^6.3.0",
"aphrodite": "^2.4.0",
"date-fns": "^2.17.0",
"file-saver": "^2.0.5",
"immutable": "^4.0.0-rc.12",
"lodash.debounce": "^4.0.8",
"monaco-editor": "^0.24.0",
"nanoid": "^3.1.22",
"randomcolor": "^0.6.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-google-login": "^5.2.2",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.3.0",
"rsuite": "^4.9.3",
"styled-components": "^5.2.1",
"web-vitals": "^1.0.1"
},
"devDependencies": {
"@actually-colab/editor-types": "^0.3.1",
"@sentry/cli": "^1.64.0",
"@types/file-saver": "^2.0.1",
"@types/lodash.debounce": "^4.0.6",
"@types/node": "^12.0.0",
"@types/randomcolor": "^0.5.5",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.16",
"@types/react-router": "^5.1.11",
"@types/react-router-dom": "^5.1.7",
"@types/react-syntax-highlighter": "^13.5.0",
"concurrently": "^6.0.2",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.1.1",
"less": "^4.1.1",
"less-watch-compiler": "^1.14.6",
"lint-staged": "^10.5.4",
"monaco-editor-webpack-plugin": "^3.1.0",
"netlify-cli": "^3.31.12",
"prettier": "^2.2.1",
"react-app-rewired": "^2.1.8",
"react-scripts": "4.0.3",
"source-map-explorer": "^2.5.2",
"typescript": "^4.1.2",
"yarn-deduplicate": "^3.1.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}