-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.16 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
{
"name": "marvel-explorer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index",
"dev:base": "webpack-dev-server --config webpack.dev.js",
"dev": "yarn dev:base -- --open",
"build": "webpack --config webpack.prod.js",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:watch": "yarn test -- --watch",
"test:staged": "yarn test -- --findRelatedTests",
"test:ci": "yarn test -- --coverage",
"check": "npm-check -u -s"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@types/axios": "^0.14.0",
"@types/faker": "^5.1.5",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.17",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"eslint": "^7.16.0",
"eslint-config-standard-with-typescript": "11",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-standard": "^5.0.0",
"express": "^4.17.1",
"express-history-api-fallback": "^2.2.1",
"faker": "^5.1.0",
"file-loader": "^6.2.0",
"html-webpack-externals-plugin": "^3.8.0",
"html-webpack-plugin": "^4.5.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-localstorage-mock": "^2.4.6",
"mini-css-extract-plugin": "^1.3.4",
"netlify-webpack-plugin": "^1.1.1",
"node-sass": "^5.0.0",
"react-hooks-helper": "^1.6.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.13",
"typescript": "^4.1.3",
"url-loader": "^4.1.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"axios": "^0.21.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-icons": "^4.1.0",
"react-router-dom": "^5.2.0"
}
}