-
Notifications
You must be signed in to change notification settings - Fork 112
/
package.json
109 lines (109 loc) · 4.32 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
{
"name": "datastation",
"productName": "DataStation Community Edition",
"license": "Apache-2.0",
"description": "The Data IDE for Developers",
"author": "DataStation Authors",
"main": "build/desktop.js",
"scripts": {
"typecheck": "yarn tsc",
"build-desktop": "python3 ./scripts/build.py ./desktop/scripts/desktop.build",
"build-test-runner": "python3 ./scripts/build.py ./runner/scripts/runner_test.build",
"build-ui": "python3 ./scripts/build.py ./ui/scripts/ui.build",
"build-server": "python3 ./scripts/build.py ./server/scripts/server.build",
"docker-build-server": "bash ./server/scripts/build_image.sh",
"build-language-definitions": "python3 ./scripts/build.py ./ui/scripts/languages.build && ./runner/scripts/generate_program_type_info.sh && yarn format",
"start-server": "yarn build-server && cp node_modules/better-sqlite3/build/Release/better_sqlite3.node build && node ./build/server.js",
"start-desktop": "yarn build-desktop && yarn electron --trace-warning --unhandled-rejection=warn build/desktop.js",
"start-ui": "./ui/scripts/watch_and_serve.sh",
"release-desktop": "python3 ./scripts/build.py ./desktop/scripts/release.build",
"release-server": "python3 ./scripts/build.py ./server/scripts/release.build",
"format": "yarn prettier --write \"**/*.js\" \"**/*.test.js\" \"**/*.test.jsx\" \"**/*.ts\" \"**/*.tsx\" \"**/*.css\" \"**/*.json\"",
"test-licenses": "yarn license-checker --production --onlyAllow 'Python-2.0;AFLv2.1;BSD;MIT;Apache-2.0;Apache 2.0;Apache*;ISC;BSD-3-Clause;MIT*;BSD-2-Clause;Unlicense'",
"generate-test-data": "node --unhandled-rejections=warn ./scripts/generate_test_data.js",
"test": "yarn test-local --coverage",
"test-local": "cross-env NODE_OPTIONS=--unhandled-rejections=warn jest --passWithNoTests --runInBand",
"e2e-test": "node --unhandled-rejections=throw ./e2e/index.js"
},
"dependencies": {
"@tabler/icons": "^1.76.0",
"ace-builds": "^1.7.1",
"asar": "^3.1.0",
"better-sqlite3": "^7.6.2",
"chart.js": "^3.8.0",
"cookie-parser": "^1.4.6",
"core-js": "^3.23.5",
"date-fns": "^2.28.0",
"express": "^4.18.1",
"express-session": "^1.17.3",
"js-yaml": "^4.1.0",
"jsdom": "^20.0.0",
"jsesc": "^3.0.2",
"json-stringify-safe": "^5.0.1",
"lodash.debounce": "^4.0.8",
"nanoid": "3",
"nodemailer": "^6.7.7",
"openid-client": "^5.1.8",
"papaparse": "^5.3.2",
"passport": "^0.6.0",
"preview": "npm:@multiprocess/preview",
"react": "17",
"react-ace": "^10.1.0",
"react-dom": "17",
"react-hotkeys-hook": "^3.4.6",
"react-syntax-highlighter": "^15.5.0",
"shape": "npm:@multiprocess/shape",
"source-map-support": "^0.5.21",
"sql-formatter": "^8.2.0",
"tmp-promise": "^3.0.3",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"use-debounce": "^8.0.2",
"xlsx": "^0.18.5"
},
"optionalDependencies": {},
"devDependencies": {
"@dsnp/parquetjs": "^1.2.1",
"@faker-js/faker": "^7.3.0",
"@types/better-sqlite3": "^7.5.0",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.5",
"@types/js-yaml": "^4.0.5",
"@types/jsesc": "^3.0.1",
"@types/json-stringify-safe": "^5.0.0",
"@types/lodash.debounce": "^4.0.7",
"@types/nanoid": "^3.0.0",
"@types/papaparse": "^5.3.2",
"@types/passport": "^1.0.9",
"@types/react": "17",
"@types/react-dom": "17",
"@types/react-syntax-highlighter": "^15.5.3",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
"cross-env": "^7.0.3",
"electron": "^19.0.8",
"electron-chromedriver": "^19.0.0",
"electron-packager": "^15.5.1",
"electron-rebuild": "^3.2.8",
"enzyme": "^3.11.0",
"esbuild": "^0.14.49",
"eslint": "^8.20.0",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.3",
"jest-canvas-mock": "^2.4.0",
"license-checker": "^25.0.1",
"node-fetch": "2",
"node-sass": "^7.0.1",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.0.0",
"refractor": "^4.7.0",
"selenium-webdriver": "^4.3.1",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"version": "0.0.0"
}