-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 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
{
"name": "rick-and-morty",
"version": "1.0.0",
"description": "Search Rick and Morty characters, episodes, and scenes",
"main": "webpack.config.js",
"scripts": {
"build": "webpack --mode production",
"start": "webpack-dev-server --open --mode development",
"cypress:ui": "cypress open",
"cypress:cli": "cypress run"
},
"keywords": [],
"author": "Andrew Usher",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.15.5",
"@babel/preset-env": "7.15.6",
"@babel/preset-react": "7.14.5",
"@drewster/eslint-config": "3.1.1",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.2",
"babel-plugin-syntax-dynamic-import": "6.18.0",
"css-loader": "6.3.0",
"cypress": "8.4.1",
"eslint": "7.32.0",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.3.2",
"image-loader": "0.0.1",
"image-webpack-loader": "7.0.1",
"prop-types": "15.7.2",
"react-router-dom": "5.3.0",
"style-loader": "3.3.0",
"stylus": "0.55.0",
"stylus-loader": "6.1.0",
"webpack": "5.72.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.8.1"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "3.24.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}