-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.73 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.73 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
{
"name": "openfin-process-manager",
"description": "OpenFin Process Manager",
"version": "2.0.0",
"author": "Noyan Gunday <noyan.gunday@openfin.co>",
"license": "Apache-2.0",
"scripts": {
"watch": "concurrently --kill-others yarn build:clean && yarn serve:dev",
"lint": "yarn run lint:typescript && yarn run lint:styles",
"lint:typescript": "eslint \"./src/**/*.{ts,tsx}\" --fix",
"lint:styles": "stylelint \"./src/**/*.{ts,tsx}\"",
"build:clean": "rimraf dist",
"build:prod": "yarn build:clean && yarn lint && webpack build --config webpack.config.js --mode production",
"build:dev": "yarn build:clean && yarn lint && webpack build --config webpack.config.js --mode development",
"build": "yarn build:prod",
"serve:dev": "webpack serve --config webpack.config.js --mode development",
"serve:prod": "webpack serve --config webpack.config.js --mode production",
"start": "yarn build:clean && yarn serve:dev"
},
"dependencies": {
"@openfin/core": "^26.70.16",
"@openfin/ui-library": "^0.3.1",
"@fontsource/inter": "^4.2.2",
"@modulz/radix-icons": "^4.0.0",
"@reduxjs/toolkit": "^1.6.2",
"@types/uuid": "^8.3.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.8",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/react": "^17.0.47",
"@types/react-dom": "^17.0.17",
"@types/react-redux": "^7.1.24",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.25",
"@types/webpack-env": "^1.17.0",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"concurrently": "^7.2.2",
"copy-webpack-plugin": "^8.1.1",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"prettier": "^2.7.1",
"react-router-dom": "^6.3.0",
"rimraf": "^3.0.2",
"source-map-loader": "^4.0.0",
"style-loader": "^3.3.1",
"styled-components": "^5.3.5",
"stylelint": "^14.9.1",
"stylelint-config-recommended": "^8.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^3.11.2"
},
"eslintConfig": {
"extends": [
"./.eslintrc.json"
],
"parserOptions": {
"project": "./tsconfig.json"
}
}
}