This repository has been archived by the owner on Mar 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.5 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
{
"name": "hr-game",
"config": {
"appname": "hr-game"
},
"version": "0.0.0",
"description": "An educational game about Machine Learning ('Artificial Intelligence') in Human Resources (HR, Human Resources) ",
"scripts": {
"build": "cross-env BABEL_ENV=production webpack --config webpack/webpack.config.prod.js --colors",
"start": "webpack-dev-server --config webpack/webpack.config.dev.js",
"format": "prettier --write ."
},
"repository": {
"url": "git@github.com:algorithmwatch/hr-game.git",
"type": "git"
},
"author": "AlgorithmWatch",
"license": "AGPL 3.0",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"autoprefixer": "^9.7.6",
"axios": "^0.19.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.10.7",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.5",
"cross-env": "^7.0.2",
"css-loader": "^3.5.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.2.0",
"mini-css-extract-plugin": "^0.9.0",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.4",
"react-svg-loader": "^3.0.3",
"style-loader": "^1.1.4",
"webpack": "^4.42.1",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@babel/polyfill": "^7.8.7",
"@nivo/circle-packing": "^0.61.0",
"@nivo/swarmplot": "^0.61.1",
"@rebass/preset": "^4.0.5",
"core-js": "^3.6.5",
"d3-array": "^2.4.0",
"d3-scale": "^3.2.1",
"easy-peasy": "^3.3.0",
"lodash.clonedeep": "^4.5.0",
"rc-slider": "^9.2.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-tooltip": "^4.2.3",
"react-use-dimensions": "^1.2.1",
"rebass": "^4.0.7",
"styled-components": "^5.1.0",
"styled-normalize": "^8.0.7"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"singleQuote": true
}
}