-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.86 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
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "ntsmphc-scraper",
"version": "1.0.0",
"description": "Scrape a website and do useful things while at it.",
"repository": "https://github.com/djfm/ntsmphc-scraper",
"scripts": {
"startDev": "NODE_ENV=development ts-node-dev src/web-ui/server.ts",
"start": "NODE_ENV=production ts-node src/web-ui/server.ts",
"build": "NODE_ENV=production webpack",
"test": "jest",
"tdd": "jest --watch",
"lint": "eslint src test"
},
"private": true,
"author": "François-Marie de Jouvencel<fm.de.jouvencel@gmail.com>",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.11",
"@types/minimist": "^1.2.1",
"@types/node": "^15.0.2",
"@types/node-fetch": "^2.5.10",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.3",
"@types/react-redux": "^7.1.16",
"@types/react-router-dom": "^5.1.7",
"@types/redux": "^3.6.0",
"@types/webpack": "latest",
"@types/webpack-dev-middleware": "^4.1.3",
"@types/webpack-env": "^1.16.0",
"@types/ws": "^7.4.2",
"chalk": "^4.1.1",
"chokidar": "^3.5.1",
"chrome-launcher": "^0.13.4",
"chrome-remote-interface": "^0.30.0",
"express": "^4.17.1",
"lodash": "^4.17.21",
"minimist": "^1.2.5",
"node-fetch": "^2.6.1",
"object-hash": "^2.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"redux": "^4.1.0",
"redux-devtools-extension": "^2.13.9",
"regenerator-runtime": "^0.13.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"webpack": "latest",
"webpack-dev-middleware": "^4.1.0",
"webpack-hot-middleware": "^2.25.0",
"ws": "^7.4.5"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/plugin-transform-react-jsx": "^7.13.12",
"@babel/preset-env": "^7.14.1",
"@babel/preset-typescript": "^7.13.0",
"@pmmmwh/react-refresh-webpack-plugin": "latest",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.169",
"@types/object-hash": "^2.1.0",
"@types/regenerator-runtime": "^0",
"@types/sass": "^1",
"@types/webpack-hot-middleware": "^2.25.4",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.4",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^33.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-tsdoc": "^0.2.14",
"jest": "^26.6.3",
"react-refresh": "latest",
"sass": "^1.32.13",
"sass-loader": "latest",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.6",
"ts-loader": "8.x",
"ts-node-dev": "^1.1.6",
"type-fest": "^0.13.1",
"webpack-cli": "^4.7.0"
}
}