-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
47 lines (47 loc) · 1.68 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
{
"name": "openfin-workspace--integrate-with-ms365-low-code",
"version": "16.0.0",
"description": "OpenFin Workspace -- Integrate with Microsoft 365 Low Code",
"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/workspace": "16.0.6",
"@openfin/workspace-platform": "16.0.6"
},
"devDependencies": {
"@openfin/core": "33.77.11",
"@openfin/node-adapter": "33.77.11",
"eslint": "8.54.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "46.9.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-unicorn": "49.0.0",
"eslint-plugin-unused-imports": "3.0.0",
"markdownlint-cli": "0.37.0",
"prettier": "3.1.0",
"ts-loader": "^9.5.1",
"typescript": "^5.3.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}