-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
49 lines (49 loc) · 1.83 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
{
"name": "openfin-workspace--workspace-native-window-integration",
"version": "20.0.0",
"description": "OpenFin Workspace Example Application -- An example of an application that takes advantage of our native window integration.",
"main": "index.js",
"scripts": {
"dos": "node ./scripts/dos.mjs && node ./scripts/kill.mjs",
"kill": "node ./scripts/kill.mjs",
"client": "node ./scripts/launch.mjs",
"build-client": "webpack build --config ./client/webpack.config.js --mode=development",
"build": "npm run build-client",
"start": "npx --yes http-server ./public -p 8080 -c-1",
"setup": "npm install && npm run build",
"prettier": "prettier --config .prettierrc --write .",
"prettier-check": "prettier --config .prettierrc --check .",
"eslint": "eslint . --ext .js,.mjs,.ts",
"markdownlint": "markdownlint **/*.md --ignore **/node_modules/**",
"validate": "npm run prettier && npm run eslint && npm run markdownlint"
},
"author": "[email protected]",
"license": "SEE LICENSE IN LICENSE.MD",
"dependencies": {
"@openfin/native-window-integration-client": "0.0.17",
"@openfin/workspace": "20.0.5",
"@openfin/workspace-platform": "20.0.5",
"file-loader": "^6.2.0"
},
"devDependencies": {
"@openfin/core": "40.100.7",
"@openfin/node-adapter": "40.100.7",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "48.2.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-simple-import-sort": "12.0.0",
"eslint-plugin-unicorn": "51.0.1",
"eslint-plugin-unused-imports": "3.1.0",
"markdownlint-cli": "0.39.0",
"prettier": "3.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.4.2",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
}
}