-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.93 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
{
"name": "portfolio",
"version": "0.1.0",
"homepage": "http://victorquanlam.com/",
"description": "Portfolio site for Victor Lam",
"repository": "https://github.com/victorquanlam/portfolio",
"author": "Victor Lam",
"license": "MIT",
"private": true,
"engines": {
"node": "16.8.0"
},
"devDependencies": {
"@babel/core": "^7.15.4",
"@craco/craco": "^6.2.0",
"@storybook/addon-a11y": "^6.3.7",
"@storybook/addon-actions": "^6.3.7",
"@storybook/addon-controls": "^6.3.7",
"@storybook/react": "^6.3.7",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"mdx-loader": "^3.0.2",
"prettier": "^2.3.2",
"react-scripts": "^4.0.3",
"react-snap": "1.23.0",
"source-map-explorer": "^2.5.2",
"storybook-preset-craco": "^0.0.6",
"stylelint": "^13.13.1",
"stylelint-config-recommended": "^5.0.0"
},
"dependencies": {
"@mdx-js/react": "^1.6.22",
"axios": "^0.21.3",
"classnames": "^2.3.1",
"popmotion": "^8.7.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-router-dom": "5.2.1",
"react-transition-group": "^4.4.2",
"three": "^0.131.3"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"storybook": "start-storybook -p 9009 -s public",
"analyze": "source-map-explorer 'build/static/js/*.js'"
},
"reactSnap": {
"puppeteerArgs": [
"--no-sandbox",
"--disable-setuid-sandbox"
],
"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"
]
}
}