-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.29 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
{
"name": "hac-doom-plugin",
"version": "0.0.1",
"description": "HAC Doom Plugin Built With JS-DOS",
"scripts": {
"analyze": "NODE_ENV=production webpack --config config/prod.webpack.config.js --env analyze=true",
"build": "NODE_ENV=production webpack --config config/prod.webpack.config.js",
"copy:static": "mkdir -p dist && cp -rf static/ dist",
"coverage": "jest --coverage --runInBand --detectOpenHandles --forceExit",
"deploy": "npm-run-all build lint test",
"lint": "npm-run-all lint:*",
"lint:ts": "eslint . --ext .js,.jsx,.ts,.tsx --color",
"lint:ts:fix": "npm run lint:ts -- --fix",
"lint:sass": "stylelint 'src/**/*.scss' --config .stylelintrc.json",
"start": "webpack serve --config config/dev.webpack.config.js",
"start:beta": "BETA=true npm start",
"start:federated": "BETA=true fec static --config config/dev.webpack.config.js",
"start:prod": "ENVIRONMENT=prod npm run start",
"start:prod:beta": "ENVIRONMENT=prod npm run start:beta",
"test": "jest",
"verify": "npm-run-all build lint coverage"
},
"dependencies": {
"@patternfly/react-core": "^4.192.15",
"js-dos": "^7.0.0-beta.6",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@openshift/dynamic-plugin-sdk-webpack": "^1.0.0-alpha2",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^1.2.1",
"@redhat-cloud-services/frontend-components-config": "^4.5.6",
"@redhat-cloud-services/frontend-components-config-utilities": "^1.5.9",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.39",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.9.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-react-hooks": "^4.3.0",
"http-server": "^14.1.1",
"jest": "^27.4.2",
"npm-run-all": "4.1.5",
"stylelint": "13.13.1",
"stylelint-config-recommended-scss": "4.2.0",
"stylelint-scss": "3.19.0",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5",
"webpack": "^5.68.0",
"webpack-bundle-analyzer": "^4.5.0"
},
"insights": {
"appname": "hac-doom-plugin"
},
"license": "Apache-2.0",
"private": true
}