-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.81 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": "portfolio",
"version": "0.1.0",
"homepage": "https://tedx.workermen.cyou/",
"description": "TEDx Site",
"repository": "https://github.com/tedx-nkcswx/website.git",
"author": "KnowsCount <knowscount@gmail.com>",
"devDependencies": {
"@mapbox/rehype-prism": "^0.8.0",
"@storybook/addon-a11y": "^6.5.10",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-controls": "^6.5.10",
"@storybook/addon-toolbars": "^6.5.10",
"@storybook/builder-webpack5": "^6.5.10",
"@storybook/manager-webpack5": "^6.5.10",
"@storybook/react": "^6.5.10",
"@svgr/webpack": "^6.3.1",
"esbuild": "^0.15.2",
"eslint": "^8.21.0",
"eslint-config-next": "^12.2.5",
"fs-extra": "^10.1.0",
"globby": "^13.1.2",
"postcss": "^8.4.16",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^7.7.2",
"prettier": "^2.7.1",
"puppeteer": "^16.1.0",
"reading-time": "^1.5.0",
"rehype-img-size": "^1.0.1",
"rehype-preset-minify": "^6.0.0",
"rehype-slug": "^5.0.1",
"storybook": "^6.5.10",
"storybook-addon-next": "^1.6.7",
"stylelint": "^14.9.1",
"stylelint-config-css-modules": "^4.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^26.0.0"
},
"dependencies": {
"classnames": "^2.2.6",
"fathom-client": "^3.5.0",
"framer-motion": "^7.1.0",
"mdx-bundler": "^9.0.1",
"next": "^12.2.5",
"popmotion": "^8.7.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-router-dom": "^5.2.2",
"react-scripts": "^5.0.1",
"react-transition-group": "^4.4.1",
"three": "^0.129.0",
"three-stdlib": "^2.18.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"build:storybook": "build-storybook -o build-storybook",
"deploy": "aws s3 sync --delete build/ s3://hamish-portfolio-site",
"deploy:storybook": "aws s3 sync --delete build-storybook s3://hamish-portfolio-storybook",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"analyze": "source-map-explorer 'build/static/js/*.js'"
},
"reactSnap": {
"skipThirdPartyRequests": true,
"headless": true,
"crawl": true
},
"browserslist": {
"production": [
">10%",
"not dead",
"not ie 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}