forked from HamishMW/portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.19 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
{
"name": "portfolio",
"version": "0.1.0",
"homepage": "https://hamishw.com",
"description": "Portfolio site for Hamish Williams",
"repository": "https://github.com/HamishMW/portfolio.git",
"author": "Hamish Williams <hello@hamishw.com>",
"devDependencies": {
"@babel/core": "^7.12.3",
"@hamishmw/react-scripts-postcss": "4.0.0-mod1",
"@storybook/addon-a11y": "^6.1.0-beta.4",
"@storybook/addon-actions": "^6.1.0-beta.4",
"@storybook/addon-controls": "^6.1.0-beta.4",
"@storybook/addon-toolbars": "^6.1.0-beta.4",
"@storybook/preset-create-react-app": "^3.1.4",
"@storybook/react": "^6.1.0-beta.4",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.1.1",
"@testing-library/user-event": "^12.2.0",
"babel-loader": "^8.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"mdx-loader": "^3.0.2",
"prettier": "^2.1.2",
"react-snap": "1.23.0",
"source-map-explorer": "^2.5.0",
"stylelint": "^13.7.2",
"stylelint-config-recommended": "^3.0.0"
},
"dependencies": {
"@mdx-js/react": "^1.6.19",
"classnames": "^2.2.6",
"popmotion": "^8.7.5",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-router-dom": "5.2.0",
"react-transition-group": "^4.4.1",
"three": "^0.122.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"build:storybook": "build-storybook -o build-storybook",
"postbuild": "react-snap",
"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"
]
}
}