-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 2.86 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
{
"name": "pokedex",
"version": "1.4.0",
"license": "GPL-3.0",
"private": true,
"author": "Volodymyr Plotnik <[email protected]>",
"keywords": [
"pokemon",
"pokemonAPI",
"pokeAPI",
"pokedex"
],
"homepage": "https://jka4.github.io/pokemon-API-react",
"scripts": {
"tsc": "tsc",
"start": "react-scripts start",
"build": "react-scripts build",
"dev": "yarn && yarn tsc && yarn build && yarn start",
"test:watch": "jest --verbose=false --watch",
"test:coverage": "jest --verbose=false --coverage",
"deploy": "yarn tsc && yarn build && gh-pages -d build",
"analyze": "source-map-explorer 'build/static/js/*.js'"
},
"dependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.13.8",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@reduxjs/toolkit": "^1.5.0",
"ahooks": "^2.9.4",
"axios": "^0.21.1",
"axios-cache-adapter": "^2.7.0",
"fuse.js": "^6.4.3",
"identity-obj-proxy": "^3.0.0",
"localforage": "^1.9.0",
"localforage-memoryStorageDriver": "^0.9.2",
"lodash.find": "^4.6.0",
"lodash.throttle": "^4.1.1",
"node-sass": "npm:[email protected]",
"sass-loader": "8.0.2",
"react-use": "15.3.4",
"react": "^16.8.1",
"react-dom": "^16.0.1",
"react-loader-spinner": "^3.1.14",
"react-loading-skeleton": "^2.1.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"styled-components": "^5.2.1",
"ts-jest": "^23.0.1",
"typescript": "^4.1.3",
"use-sound": "^2.0.1"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"react-app",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {
"no-unused-vars": "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": {
"@testing-library/react": "^11.2.5",
"@types/enzyme": "^3.1.12",
"@types/enzyme-adapter-react-16": "^1.0.2",
"@types/jest": "^23.3.1",
"@types/lodash.find": "^4.6.6",
"@types/lodash.throttle": "^4.1.6",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-loader-spinner": "^3.1.3",
"@types/react-redux": "^7.1.14",
"@types/react-router-dom": "^5.1.6",
"@types/react-test-renderer": "^17.0.1",
"@types/redux-mock-store": "^1.0.2",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/parser": "^4.11.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"eslint-plugin-import": "^2.22.1",
"gh-pages": "^3.1.0",
"jest": "^23.4.2",
"prettier": "^2.2.1",
"react-test-renderer": "^17.0.1",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.4",
"source-map-explorer": "^2.5.1"
}
}