-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
104 lines (104 loc) · 2.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "sendchinatownlove",
"version": "0.1.0",
"description": "React front-end used in conjunction with our site builder",
"author": "Send Chinatown Love",
"private": true,
"homepage": "https://sendchinatownlove.com",
"engines": {
"node": "14.x"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jest-environment-jsdom-sixteen",
"eject": "react-scripts eject",
"format": "prettier --write .",
"deploy": "yarn build && gh-pages -d build -b master",
"preinstall": "npx only-allow yarn",
"prepare": "husky install"
},
"dependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@stripe/react-stripe-js": "^1.4.0",
"@stripe/stripe-js": "^1.15.1",
"axios": "^0.21.1",
"bootstrap": "^5.0.0",
"classnames": "^2.3.1",
"history": "4.10.1",
"i18next": "^20.2.2",
"jshashes": "^1.0.8",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"node-sass": "^4.14.1",
"react": "^16.14.0",
"react-bootstrap": "^1.5.2",
"react-clipboard-icon": "^1.1.0",
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "^16.14.0",
"react-facebook-pixel": "^0.1.3",
"react-filterable-table": "^0.3.434",
"react-ga": "^2.7.0",
"react-i18next": "^11.8.15",
"react-markdown": "^6.0.2",
"react-number-format": "^4.5.5",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"react-share": "^4.4.0",
"react-social-icons": "^4.1.0",
"react-square-payment-form": "^0.6.3",
"react-to-print": "^2.12.4",
"react-youtube": "^7.13.1",
"reactjs-popup": "^1.5.0",
"redux": "^4.1.0",
"stripe": "^8.160.0",
"styled-components": "^5.3.0",
"use-media": "^1.4.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^10.4.9",
"@testing-library/user-event": "^7.1.2",
"@types/classnames": "^2.3.1",
"@types/history": "^4.7.8",
"@types/jest": "^26.0.23",
"@types/node": "14.x",
"@types/object-hash": "^1.3.4",
"@types/react": "^16.14.6",
"@types/react-dom": "^16.9.12",
"@types/react-router-dom": "^5.1.7",
"@types/stripe-v3": "^3.1.23",
"@types/styled-components": "^5.1.9",
"@types/uuid": "^8.3.0",
"axios-mock-adapter": "^1.19.0",
"gh-pages": "^3.1.0",
"husky": "^7.0.2",
"jest-environment-jsdom-sixteen": "^1.0.3",
"lint-staged": "^11.0.0",
"prettier": "^2.2.1",
"ts-jest": "^25.5.1",
"typescript": "^4.2.4",
"yarn": "^1.22.10"
},
"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"
]
},
"lint-staged": {
"*.{ts,tsx,scss,md}": "prettier --write"
}
}