-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.66 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
{
"name": "tree-of-champions",
"version": "0.1.0",
"description": "",
"keywords": [],
"author": "Ryan Badour",
"license": "MIT",
"homepage": "",
"scripts": {
"clean-dist": "rimraf dist/*",
"build": "npm run clean-dist && webpack --config=configs/webpack/prod.js",
"deploy-prod": "gh-pages -d dist -a",
"deploy-dev": "gh-pages -d dist -a -e dev",
"deploy-as-version": "gh-pages -d dist -a -e \"0.1.0\"",
"start": "npm run start-dev",
"start-dev": "webpack serve --config=configs/webpack/dev.js",
"test": "jest --coverage --watchAll --config=configs/jest.json"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@types/d3-timer": "^3.0.0",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.23",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@types/react-modal": "^3.13.1",
"@types/webpack-env": "^1.18.0",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"babel-loader": "^8.2.4",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.6.0",
"express": "^4.17.3",
"file-loader": "^6.2.0",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "^5.5.0",
"image-webpack-loader": "^8.1.0",
"jest": "^27.5.1",
"prettier": "^2.6.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.13.0",
"rimraf": "^3.0.2",
"sass": "^1.49.11",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.1",
"typescript": "^4.6.3",
"webpack": "^5.71.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0",
"webpack-spritesmith": "^1.1.0"
},
"dependencies": {
"@dhmk/zustand-lens": "^2.0.5",
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@floating-ui/react": "^0.24.3",
"@fortawesome/fontawesome-svg-core": "^6.1.2",
"@fortawesome/free-regular-svg-icons": "^6.1.2",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"@mui/material": "^5.5.3",
"@types/styled-components": "^5.1.26",
"classnames": "^2.3.1",
"d3-timer": "^3.0.1",
"lodash": "^4.17.21",
"react-modal": "^3.15.1",
"react-tooltip": "^4.2.21",
"styled-components": "^5.3.6",
"zustand": "^4.1.1"
}
}