forked from ivnkris/bandmatch-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.21 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.21 KB
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
{
"name": "project-3-bandmatch-client",
"version": "0.1.0",
"private": true,
"homepage": "http://natasha-mann.github.io/bandmatch-client",
"engines": {
"node": "14.x"
},
"dependencies": {
"@apollo/client": "^3.4.1",
"@material-ui/core": "^4.12.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"bootstrap": "^5.0.2",
"gh-pages": "^3.2.3",
"graphql": "^15.5.1",
"jquery": "^3.6.0",
"moment": "^2.29.1",
"react": "^17.0.2",
"react-accessible-accordion": "^3.3.5",
"react-aws-s3": "^1.5.0",
"react-bootstrap": "^2.0.0-beta.4",
"react-datetime": "^3.0.4",
"react-device-detect": "^1.17.0",
"react-dom": "^17.0.2",
"react-form-stepper": "^1.4.3",
"react-hook-form": "^7.12.1",
"react-icons": "^4.2.0",
"react-images-uploading": "^3.1.3",
"react-multi-carousel": "^2.6.3",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-select": "^4.3.1",
"typewriter-effect": "^2.18.0",
"uuid": "^8.3.2",
"web-vitals": "^1.1.2"
},
"scripts": {
"start": "react-scripts --max_old_space_size=8192 start",
"build": "react-scripts --max_old_space_size=8192 build",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@storybook/addon-actions": "^6.3.4",
"@storybook/addon-essentials": "^6.3.4",
"@storybook/addon-links": "^6.3.4",
"@storybook/node-logger": "^6.3.4",
"@storybook/preset-create-react-app": "^3.2.0",
"@storybook/react": "^6.3.4"
}
}