-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "pandemic-game",
"version": "1.0.0",
"description": "A simple web game / policy simulator to build intuition around the best way to respond to a pandemic",
"private": true,
"scripts": {
"start:dev": "webpack serve --config webpack.config.dev.js",
"build": "webpack --mode=production --config webpack.config.prod.js",
"lint": "prettier --config .prettierrc 'src/**/*.(ts|js)' --write",
"test": "jest --config=jest.config.ts --runInBand --detectOpenHandles --colors --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blakeelias/pandemic-game.git"
},
"keywords": [
"covid-19",
"game",
"pandemic"
],
"author": "",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/blakeelias/pandemic-game/issues"
},
"homepage": "https://github.com/blakeelias/pandemic-game#readme",
"browserslist": "> 0.25%, not dead",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/plugin-transform-typescript": "^7.12.1",
"@babel/preset-env": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@types/jest": "^26.0.19",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^6.4.0",
"core-js": "^3.8.1",
"css-loader": "^2.1.1",
"eslint": "^7.15.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.0.0",
"exports-loader": "^1.1.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"regenerator-runtime": "^0.13.7",
"terser-webpack-plugin": "^4.2.3",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.12",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "^4.2.0",
"webpack-cli": "^4.2.0",
"webpack-dev-middleware": "^4.0.2",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"bootstrap": "^4.5.3",
"bootstrap-icons": "^1.2.1",
"highcharts": "^8.2.2",
"jquery": "^3.5.1",
"jstat": "^1.9.4",
"lodash.clonedeep": "^4.5.0",
"popper.js": "^1.16.1"
}
}