-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.88 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
{
"name": "@pioneers/dawn",
"version": "0.9.0",
"description": "PiE Robotics System Frontend",
"main": "build/main.js",
"repository": "github:jonathan-j-lee/pie-central-fork",
"scripts": {
"build": "webpack --mode production --progress",
"build:watch": "webpack --mode development --progress --watch",
"package": "npm run build && electron-builder",
"clean": "rm -rf build coverage dist",
"start": "electron . | bunyan",
"lint": "eslint --ext ts --ext tsx .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "jest",
"test:watch": "npm test -- --watch"
},
"author": "Pioneers in Engineering",
"license": "ISC",
"private": true,
"dependencies": {
"@blueprintjs/core": "^3.47.0",
"bunyan": "^1.8.15",
"lodash": "^4.17.21",
"node-ssh": "^12.0.0",
"shell-escape": "^0.2.0",
"zeromq": "^6.0.0-beta.6"
},
"devDependencies": {
"@pioneers/runtime-client": "../runtime/node-client",
"@reduxjs/toolkit": "^1.6.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@trivago/prettier-plugin-sort-imports": "^2.0.4",
"@types/bunyan": "^1.8.7",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.172",
"@types/react": "^17.0.13",
"@types/react-dom": "^17.0.8",
"@types/react-highlight": "^0.12.3",
"@types/shell-escape": "^0.2.0",
"@types/ssh2": "^0.5.47",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"ace-builds": "^1.4.12",
"css-loader": "^5.2.6",
"electron": "^13.1.4",
"electron-builder": "^22.9.1",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-semistandard": "^16.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.2.4",
"jest-canvas-mock": "^2.3.1",
"node-loader": "^2.0.0",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-ace": "^9.4.1",
"react-chartjs-2": "^3.0.3",
"react-dom": "^17.0.2",
"react-highlight": "^0.14.0",
"react-joyride": "^2.3.0",
"react-redux": "^7.2.4",
"redux": "^4.1.0",
"sass": "^1.35.1",
"sass-loader": "^12.1.0",
"style-loader": "^3.0.0",
"ts-jest": "^27.0.4",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"webpack": "^5.41.1",
"webpack-cli": "^4.7.2"
},
"build": {
"appId": "edu.berkeley.pioneers.dawn",
"asar": true,
"files": [
"build/**/*"
],
"linux": {
"category": "Development",
"executableName": "dawn",
"artifactName": "${productName}-${version}.${ext}"
},
"productName": "dawn",
"publish": "github",
"remoteBuild": false
}
}