-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 3.62 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
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
{
"name": "EV_Charging_Simulator_FE",
"version": "0.0.1",
"description": "A DApp that works with peaq network to simulate an EV Charging Simulator",
"repository": "https://github.com/peaqnetwork/peaq-network-ev-charging-sim",
"homepage": "https://peaq.network",
"license": "Apache2",
"private": true,
"scripts": {
"prebuild": "npm run clean",
"dr:surge": "node dr-surge.js",
"build": "webpack --config webpack.prod.js && npm run dr:surge",
"start": "mkdir -p dist && runtime-env-cra --config-name=./dist/runtime-env.js && sirv dist --cors --single --host --port 8080",
"start:dev": "mkdir -p dist && runtime-env-cra --config-name=./dist/runtime-env.js && webpack serve --color --progress --config webpack.dev.js",
"test": "jest --watch",
"test:coverage": "jest --coverage",
"eslint": "eslint --ext .tsx,.js ./src/",
"lint": "npm run eslint",
"format": "prettier --check --write ./src/**/*.{tsx,ts}",
"type-check": "tsc --noEmit",
"ci-checks": "npm run type-check && npm run lint && npm run test:coverage",
"build:bundle-profile": "webpack --config webpack.prod.js --profile --json > stats.json",
"bundle-profile:analyze": "npm run build:bundle-profile && webpack-bundle-analyzer ./stats.json",
"clean": "rimraf dist",
"storybook": "start-storybook -p 6006",
"build:storybook": "build-storybook"
},
"devDependencies": {
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-knobs": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/addons": "^6.2.9",
"@storybook/react": "^6.2.9",
"@types/enzyme": "^3.10.8",
"@types/jest": "^26.0.23",
"@types/react-router-dom": "^5.1.7",
"@types/victory": "^33.1.4",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"copy-webpack-plugin": "^9.0.0",
"css-loader": "^5.2.6",
"css-minimizer-webpack-plugin": "^3.0.1",
"dotenv-webpack": "^7.0.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.2",
"eslint": "^7.28.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"imagemin": "^8.0.0",
"jest": "^27.0.4",
"mini-css-extract-plugin": "^1.6.0",
"postcss": "^8.3.1",
"prettier": "^2.3.1",
"prop-types": "^15.7.2",
"raw-loader": "^4.0.2",
"react-axe": "^3.5.4",
"react-docgen-typescript-loader": "^3.7.2",
"react-router-dom": "^5.2.0",
"regenerator-runtime": "^0.13.7",
"rimraf": "^3.0.2",
"style-loader": "^2.0.0",
"svg-url-loader": "^7.1.1",
"terser-webpack-plugin": "^5.1.3",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"tslib": "^2.3.1",
"typescript": "^4.3.2",
"url-loader": "^4.1.1",
"webpack": "^5.38.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@patternfly/react-core": "^4.162.3",
"@patternfly/react-icons": "^4.13.1",
"@patternfly/react-log-viewer": "^4.20.4",
"@patternfly/react-styles": "^4.12.5",
"@reduxjs/toolkit": "^1.7.1",
"@storybook/builder-webpack5": "^6.2.9",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-qr-code": "^2.0.3",
"react-redux": "^7.2.6",
"react-router-last-location": "^2.0.1",
"redux": "^4.1.2",
"runtime-env-cra": "^0.2.4",
"sirv-cli": "^1.0.12",
"socket.io-client": "^4.4.0"
}
}