-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.88 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
90
91
92
93
94
95
96
97
{
"name": "sinistre-eshop",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/seanmgd/sinistre-eshop"
},
"bugs": {
"url": "https://github.com/seanmgd/sinistre-eshop/issues"
},
"scripts": {
"start": "run-p start:*",
"start:react-app": "react-scripts start",
"start:storybook": "start-storybook -p 9009 -s ./public",
"format": "prettier --write \"**/*.{js,json,scss,md,yml,html}\"",
"lint": "eslint .",
"test": "react-scripts test --watchAll=false --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"build": "react-scripts build"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-brands-svg-icons": "^5.15.1",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.13",
"@reach/router": "^1.3.1",
"@stripe/react-stripe-js": "^1.1.2",
"@stripe/stripe-js": "^1.11.0",
"@ttrmz/react-utils": "^2.0.0",
"axios": "^0.21.0",
"framer-motion": "^2.9.4",
"global": "^4.4.0",
"i18next": "^19.4.2",
"i18next-browser-languagedetector": "^4.1.1",
"i18next-xhr-backend": "^3.2.2",
"netlify-cli": "^2.69.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-i18next": "^11.3.4",
"react-mailchimp-subscribe": "^2.1.0",
"react-scripts": "^4.0.1",
"styled-components": "^5.2.1",
"workbox-background-sync": "^5.1.3",
"workbox-broadcast-update": "^5.1.3",
"workbox-cacheable-response": "^5.1.3",
"workbox-core": "^5.1.3",
"workbox-expiration": "^5.1.3",
"workbox-google-analytics": "^5.1.3",
"workbox-navigation-preload": "^5.1.3",
"workbox-precaching": "^5.1.3",
"workbox-range-requests": "^5.1.3",
"workbox-routing": "^5.1.3",
"workbox-strategies": "^5.1.3",
"workbox-streams": "^5.1.3"
},
"devDependencies": {
"@storybook/addon-backgrounds": "^5.3.14",
"@storybook/addon-knobs": "^5.3.13",
"@storybook/addons": "^5.3.13",
"@storybook/preset-create-react-app": "^1.5.2",
"@storybook/react": "^5.3.13",
"@testing-library/react": "^11.2.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.14.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1"
},
"husky": {
"hooks": {
"pre-commit": "run-p lint test"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}