-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.97 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
{
"name": "react-rail",
"version": "1.1.1",
"description": "See the live timetable for any Irish Rail station, and the journey each train is on.",
"keywords": [
"react",
"webpack",
"typescript",
"irish rail",
"train",
"PWA",
"app"
],
"author": "Jesse Ashmore",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jeezeh/react-irish-rail.git"
},
"homepage": "https://www.reactrail.com/",
"scripts": {
"build": "npm run clean-dist && webpack --mode production --config=configs/webpack/prod.js",
"clean-dist": "rimraf dist/*",
"start": "npm run build && npm run start-prod",
"dev": "concurrently --kill-others \"webpack-dev-server --mode development --config=configs/webpack/dev.js\" \"node express.js\"",
"start-prod": "node express.js",
"test": "jest --coverage --watchAll --config=configs/jest.json"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@types/he": "^1.1.2",
"@types/jest": "^27.5.0",
"@types/node": "^17.0.32",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.3",
"@types/react-table": "^7.7.12",
"@types/smoothscroll-polyfill": "^0.3.1",
"@types/styled-components": "^5.1.25",
"babel-loader": "^8.2.5",
"compression-webpack-plugin": "^9.2.0",
"concurrently": "^7.1.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"image-webpack-loader": "^8.1.0",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-refresh": "^0.13.0",
"rimraf": "^3.0.2",
"sass": "^1.51.0",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.0",
"typescript": "^4.6.4",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0",
"webpack-merge": "^5.8.0",
"workbox-webpack-plugin": "^6.5.3"
},
"dependencies": {
"@babel/runtime": "^7.18.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.21.2",
"fast-xml-parser": "^4.4.1",
"fuse.js": "^6.6.2",
"he": "^1.2.0",
"http-proxy-middleware": "^2.0.7",
"memory-cache": "^0.2.0",
"moment": "^2.29.4",
"moment-locales-webpack-plugin": "^1.2.0",
"newrelic": "^11.23.2",
"react-collapsible": "^2.8.4",
"react-feather": "^2.0.9",
"react-select": "^5.3.2",
"react-spinners": "^0.11.0",
"react-window": "^1.8.7",
"request": "^2.88.2",
"sanitize-filename": "^1.6.3",
"smoothscroll-polyfill": "^0.4.4",
"styled-components": "^5.3.5"
}
}