-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
80 lines (80 loc) · 2.21 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
{
"name": "socialdev",
"version": "0.1.0",
"private": true,
"dependencies": {
"@firebase/firestore-types": "^1.10.1",
"@testing-library/jest-dom": "^5.0.0",
"@testing-library/user-event": "^8.0.3",
"@types/emoji-mart": "^2.11.3",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.2",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@types/react-router-dom": "^5.1.3",
"@types/styled-components": "^5.0.1",
"axios": "^0.21.1",
"emoji-mart": "^2.11.2",
"firebase": "^7.8.0",
"firebase-admin": "^8.9.2",
"firebase-functions": "^3.3.0",
"firebase-tools": "^7.12.1",
"formik": "^2.1.4",
"modern-normalize": "^0.5.0",
"moment": "^2.24.0",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-router-dom": "^5.1.2",
"react-scripts": "2.1.8",
"react-stripe-checkout": "^2.6.3",
"react-testing-library": "^8.0.1",
"styled-components": "^4.1.3",
"typescript": "^3.8.3",
"yup": "^0.28.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook",
"build-storybook": "build-storybook -s public",
"firebase-deploy": "npm run build && firebase deploy"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@storybook/preset-create-react-app": "^1.5.2",
"@storybook/react": "^5.0.3",
"@testing-library/react": "^9.4.1",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"babel-plugin-styled-components": "^1.10.6",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"husky": "^1.3.1",
"jest-dom": "^4.0.0",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"storybook-react-router": "^1.0.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --config .prettierrc --write",
"git add"
]
}
}