-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
137 lines (137 loc) · 3.62 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "Lorester-Bookstore",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/core": "^7.0.0-0",
"@testing-library/jest-dom": "^4.1.0",
"@testing-library/react": "^9.2.0",
"antd": "3.13.0",
"apollo-boost": "^0.1.20",
"apollo-cache-inmemory": "^1.3.9",
"apollo-cache-persist": "^0.1.1",
"apollo-client": "^2.4.5",
"apollo-link": "^1.2.4",
"apollo-link-context": "^1.0.9",
"apollo-link-error": "^1.1.2",
"apollo-link-http": "^1.5.5",
"autoprefixer": "7.1.6",
"axios": "^0.18.1",
"babel-core": "6.26.0",
"babel-eslint": "10.0.3",
"babel-jest": "^24.9.0",
"browserslist": "^4.6.6",
"caniuse-lite": "^1.0.30000989",
"canvas": "^2.6.0",
"case-sensitive-paths-webpack-plugin": "2.1.1",
"chalk": "1.1.3",
"css-loader": "2.1.0",
"date-fns": "^2.1.0",
"dotenv": "4.0.0",
"dotenv-expand": "4.2.0",
"dotenv-webpack": "^1.5.7",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-react-app": "^2.1.0",
"eslint-loader": "1.9.0",
"eslint-plugin-flowtype": "2.39.1",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "1.1.5",
"fs-extra": "3.0.1",
"graphql": "^14.0.2",
"graphql-tag": "^2.10.0",
"html-webpack-plugin": "2.29.0",
"jest": "^24.9.0",
"jest-canvas-mock": "^2.1.1",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.13",
"lodash.debounce": "^4.0.8",
"object-assign": "4.1.1",
"path-to-regexp": "1.7.0",
"postcss-flexbugs-fixes": "3.2.0",
"postcss-loader": "2.0.8",
"promise": "8.0.1",
"prop-types": "^15.6.2",
"querystring": "^0.2.0",
"raf": "3.4.0",
"react": "^16.10.1",
"react-apollo": "^2.2.4",
"react-content-loader": "^3.2.0",
"react-dev-utils": "^5.0.2",
"react-dom": "^16.10.1",
"react-meta-tags": "^0.7.4",
"react-redux": "^7.1.1",
"react-router-dom": "^5.0.1",
"react-scripts": "^3.1.2",
"react-scroll-to-component": "^1.0.2",
"react-stars": "^2.2.5",
"react-tooltip": "^3.8.4",
"react-truncate": "^2.4.0",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.5",
"redux-thunk": "^2.3.0",
"resolve": "1.6.0",
"serve": "10.1.2",
"set-query-string": "^2.2.0",
"source-map-support": "^0.5.13",
"style-loader": "0.19.0",
"sw-precache-webpack-plugin": "0.11.4",
"sweetalert2": "^7.28.11",
"url-loader": "0.6.2",
"validatorjs": "^3.15.1",
"webpack": "4.41.0",
"webpack-dev-server": "3.2.1",
"webpack-manifest-plugin": "1.3.2",
"whatwg-fetch": "2.0.3"
},
"scripts": {
"start:dev": "react-scripts start",
"start": "serve -s build",
"build": "react-scripts build",
"test": "jest -c --watchAll=false --coverage",
"test:jest:watch": "jest -c --runInBand --watch --coverage",
"eject": "react-scripts eject",
"heroku-postbuild": "yarn build"
},
"devDependencies": {
"eslint-plugin-jest": "^21.26.2",
"history": "^4.10.1",
"node-sass": "^4.12.0",
"sass-loader": "^7.1.0"
},
"babel": {
"presets": [
"react-app"
]
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"moduleDirectories": [
"node_modules",
"src"
],
"setupFilesAfterEnv": [
"<rootDir>/tests/setup-env"
],
"testMatch": [
"**/?(*.)+(spec|test).[jt]s"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"resolutions": {
"event-stream": "^4.0.1"
},
"engines": {
"node": "10.x"
}
}