-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.4 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
{
"name": "site",
"description": "Personal website for Ted Pennings",
"version": "3.1.0",
"repository": {
"type": "git",
"url": "https://github.com/tedpennings/site.git"
},
"license": "MIT",
"browser": "./src/index.jsx",
"browserslist": [
"last 2 major versions and >1%",
"not dead",
"not op_mini all"
],
"scripts": {
"lint:eslint": "eslint src cypress --ext js,jsx,json,mdx,md",
"lint:prettier": "prettier --check src cypress .github",
"lint": "concurrently -n 'prettier,eslint' yarn:lint:prettier yarn:lint:eslint",
"start": "webpack serve",
"open:cypress": "NODE_ENV=test yarn cypress open --config baseUrl=http://localhost:3000/",
"build": "webpack build",
"test": "echo 'Run Cypress'"
},
"dependencies": {
"@babel/core": "^7.17.2",
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@material-ui/styles": "^4.11.4",
"@mdx-js/loader": "^2.0.0-next.9",
"@svgr/webpack": "^5.5.0",
"@testing-library/cypress": "^8.0.2",
"@testing-library/react": "^12.1.3",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.3",
"babel-plugin-import": "^1.13.3",
"browserslist": "^4.19.1",
"concurrently": "^6.5.1",
"copy-webpack-plugin": "^10.2.4",
"cypress": "^9.4.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-mdx": "^1.16.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"file-loader": "6.2.0",
"fs-extra": "^10.0.0",
"html-webpack-plugin": "^5.5.0",
"jss": "^10.9.0",
"medium-zoom": "^1.0.6",
"prettier": "2.5.1",
"prop-types": "^15.8.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.1",
"responsive-loader": "^2.3.0",
"scheduler": "^0.20.2",
"sharp": "^0.29.3",
"terser-webpack-plugin": "^5.2.5",
"url-loader": "4.1.1",
"use-react-router-breadcrumbs": "^2.0.2",
"wavesurfer.js": "^5.2.0",
"webpack": "^5.70.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "4.7.4"
}
}