-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·64 lines (64 loc) · 2 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
{
"name": "@andrew-codes/forecast-work",
"version": "2.2.1",
"description": "Forecast work using your team's historical throughput and the Monte Carlo method.",
"main": "dist/main/main.js",
"repository": "git@github.com:andrew-codes/forecast-work.git",
"author": "Andrew Smith <andrew@andrew.codes>",
"license": "LICENSE",
"private": true,
"engines": {
"node": "20.9.0"
},
"scripts": {
"prestart": "yarn clean",
"start": "electron-esbuild dev",
"prebuild": "yarn clean",
"build": "cross-env NODE_ENV=\"production\" electron-esbuild build",
"release": "node -r esbuild-register ./scripts/release.ts",
"clean": "rimraf dist",
"lint": "exit 0",
"test/e2e": "chokidar \"src/**/*.ts\" \"src/**/*.tsx\" \"e2e/**/*.ts\" -c \"yarn build && playwright test\"",
"test/e2e/ci": "playwright test",
"test/unit": "jest --coverage",
"test/unit/ci": "yarn test/unit"
},
"dependencies": {
"@atlaskit/button": "^16.5.3",
"@atlaskit/page-layout": "^1.3.7",
"@atlaskit/select": "^15.7.7",
"@atlaskit/tabs": "^13.3.8",
"fast-csv": "^4.3.6",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-charts": "^3.0.0-beta.51",
"react-dom": "^17.0.2",
"react-is": "^18.2.0",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@playwright/test": "^1.29.2",
"@types/jest": "^29.2.6",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.18",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.26",
"chokidar-cli": "^3.0.0",
"cross-env": "^7.0.3",
"electron": "^22.0.3",
"electron-builder": "^23.6.0",
"electron-esbuild": "^7.0.0",
"electron-react-devtools": "^0.5.3",
"electron-redux-devtools": "^0.3.4",
"electron-util": "0.17.2",
"esbuild": "^0.16.0",
"esbuild-register": "^3.4.2",
"jest": "^29.3.1",
"jest-when": "^3.5.2",
"playwright": "^1.29.2",
"rimraf": "^4.1.1",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
}
}