-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.72 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
85
86
87
88
89
{
"name": "portfolio",
"version": "5.0.0",
"dependencies": {
"@babel/core": "7.24.3",
"@emotion/babel-plugin": "11.11.0",
"@emotion/babel-preset-css-prop": "11.11.0",
"@mdx-js/loader": "2.3.0",
"@mdx-js/react": "2.3.0",
"@next/eslint-plugin-next": "13.5.6",
"@next/mdx": "13.5.6",
"@percy/cli": "1.28.2",
"@percy/cypress": "3.1.2",
"@sitaggart/eslint-config-ts": "0.7.0",
"@sitaggart/prettier-config": "0.3.25",
"@twilio-paste/core": "20.11.0",
"@twilio-paste/icons": "12.4.0",
"@types/lodash.reverse": "4.0.9",
"@types/lodash.sortby": "4.7.9",
"@types/node": "20.11.30",
"@types/react": "18.2.69",
"@types/react-dom": "18.2.22",
"babel-plugin-import-glob-array": "0.2.0",
"babel-plugin-inline-react-svg": "2.0.2",
"cypress": "13.7.1",
"eslint": "8.57.0",
"eslint-config-next": "13.5.6",
"eslint-formatter-codeframe": "7.32.1",
"husky": "8.0.3",
"isomorphic-unfetch": "4.0.2",
"jest": "29.7.0",
"lodash.reverse": "4.0.1",
"lodash.sortby": "4.7.0",
"mdx-prism": "0.3.4",
"netlify-cli": "17.20.1",
"next": "13.5.6",
"next-seo": "6.5.0",
"precise-commits": "1.0.2",
"prettier": "3.2.5",
"prismjs": "1.29.0",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-uid": "2.3.3",
"rehype": "13.0.1",
"remark-gfm": "3.0.1",
"start-server-and-test": "2.0.3",
"swr": "2.2.5",
"typescript": "5.4.3"
},
"resolutions": {
"@types/react": "18.2.69"
},
"homepage": "https://www.simontaggart.com",
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "[email protected]:SiTaggart/PortfolioSite.git"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"clean": "rm -rf public && rm -rf .cache",
"lint": "eslint './**/*.{js,jsx,ts,tsx}' --format codeframe",
"test": "echo \"Error: no test specified\" && exit 1",
"ci:checks": "yarn build && yarn lint && yarn prettier && yarn cypress:ci",
"cypress": "start-server-and-test 'yarn dev' http://localhost:3000 'yarn cypress:open'",
"cypress:open": "cypress open",
"cypress:run": "yarn percy:exec cypress run",
"cypress:ci": "start-server-and-test 'yarn dev' http://localhost:3000 'yarn cypress:run'",
"percy": "percy",
"percy:exec": "percy exec --",
"prettier": "prettier -l '**/*.{js,jsx,ts,tsx}'",
"prettier:fix": "prettier --write '**/*.{js,jsx,ts,tsx}'",
"svg-to-react": "svg-to-react",
"prepare": "husky install"
},
"browserslist": [
"defaults"
],
"packageManager": "[email protected]",
"nextBundleAnalysis": {
"budget": 358400,
"budgetPercentIncreaseRed": 20,
"showDetails": true
}
}