forked from ruohki/lunchpad
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.85 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.85 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
{
"name": "lunchpad",
"version": "0.4.0",
"license": "ISC",
"author": "Tillmann Hübner <ruohki@gmail.com>",
"repository": "https://github.com/ruohki/lunchpad",
"description": "Macro application that can handle launchpads",
"scripts": {
"nx": "nx",
"start": "nx serve",
"build": "nx build",
"dump:version": "node tools/versionDump/index.js",
"build:all": "npm run dump:version && nx build frontend --prod && nx build application --prod",
"make": "npm run build:all && nx run application:make",
"make:publish": "npm run build:all && nx run application:make --publishPolicy=always",
"generate:icons": "node tools/generateIcons/index.js libs/icons/src/SVG",
"test": "nx test",
"lint": "nx workspace-lint && nx lint",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"workspace-schematic": "nx workspace-schematic",
"dep-graph": "nx dep-graph",
"help": "nx help"
},
"private": true,
"dependencies": {
"@fortawesome/fontawesome-free": "^5.13.1",
"auto-launch": "^5.0.5",
"configstore": "^5.0.1",
"document-register-element": "1.13.1",
"electron-updater": "^4.3.1",
"ffi-napi": "^3.0.1",
"framer-motion": "^1.11.0",
"keyboardjs": "^2.6.2",
"lodash": "^4.17.15",
"obs-websocket-js": "^4.0.1",
"polished": "^3.6.4",
"react": "16.12.0",
"react-color": "^2.18.1",
"react-dnd": "^10.0.2",
"react-dnd-html5-backend": "^10.0.2",
"react-dom": "16.12.0",
"react-helmet": "^6.1.0",
"react-tippy": "^1.4.0",
"react-tooltip": "^4.2.6",
"react-use": "^14.3.0",
"ref-array-napi": "^1.2.1",
"reflect-metadata": "^0.1.13",
"robotjs": "git+https://github.com/ruohki/robotjs.git",
"styled-components": "5.0.1",
"svgson": "^4.1.0",
"typeface-exo-2": "^1.1.4",
"typeface-noto-serif": "0.0.72",
"typeface-oswald": "^1.1.4",
"typeface-roboto": "0.0.75",
"typeface-source-sans-pro": "^1.1.5",
"typescript-json-serializer": "^2.3.2",
"uuid": "^7.0.3",
"webmidi": "^2.5.1",
"winreg": "^1.2.4"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.4",
"@babel/plugin-transform-typescript": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@nrwl/cypress": "9.2.2",
"@nrwl/eslint-plugin-nx": "9.2.2",
"@nrwl/jest": "9.2.2",
"@nrwl/react": "9.2.2",
"@nrwl/web": "9.2.2",
"@nrwl/workspace": "9.2.2",
"@testing-library/react": "9.4.0",
"@types/electron": "^1.6.10",
"@types/jest": "25.1.4",
"@types/lodash": "^4.14.156",
"@types/naudiodon": "^2.1.0",
"@types/node": "^8.10.61",
"@types/react": "16.9.17",
"@types/react-dnd": "^3.0.2",
"@types/react-dom": "16.9.4",
"@types/styled-components": "^5.0.1",
"@typescript-eslint/eslint-plugin": "2.19.2",
"@typescript-eslint/parser": "2.19.2",
"babel-plugin-transform-typescript-metadata": "^0.3.0",
"cypress": "^4.7.0",
"dotenv": "6.2.0",
"electron": "^7.3.1",
"electron-rebuild": "^1.11.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.17.0",
"eslint-plugin-react-hooks": "2.3.0",
"jest": "25.2.3",
"nx-electron": "^9.0.0",
"prettier": "1.19.1",
"ts-jest": "25.2.1",
"ts-node": "~7.0.0",
"tslint": "~6.0.0",
"typescript": "^3.9.5"
}
}