-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.26 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
{
"name": "zalando-clone",
"homepage": "https://ingridamaral.github.io/zalando-clone/",
"version": "1.0.0",
"description": "This is a clone version of Zalando website",
"main": "index.tsx",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "webpack --config webpack.config.prod.js --progress",
"start": "webpack-dev-server --config webpack.config.dev.js --open --hot --history-api-fallback",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write \"src/**/*.(ts|tsx|scss)\"",
"lint": "tsc --noEmit && eslint src/**/*.ts{,x}",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"keywords": [],
"author": "Ingrid Amaral",
"license": "ISC",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@reduxjs/toolkit": "^1.4.0",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.10",
"@types/node-sass": "^4.11.1",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.5",
"@types/webpack": "4.1.4",
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"babel-cli": "^6.26.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^6.3.0",
"css-loader": "^4.2.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.3",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^4.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.4.2",
"jest-cli": "^26.4.2",
"jest-transform-css": "^2.0.0",
"mini-css-extract-plugin": "^1.3.0",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"prettier": "^2.1.2",
"react-redux": "^7.2.1",
"redux-devtools": "^3.6.1",
"sass-loader": "^9.0.3",
"source-map-loader": "^1.0.2",
"style-loader": "^1.2.1",
"ts-jest": "^26.2.0",
"ts-loader": "^6.2.1",
"typescript": "^3.9.7",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.3.0",
"webpack-visualizer-plugin": "^0.1.11"
},
"dependencies": {
"@splidejs/react-splide": "^0.4.4",
"axios": "^0.21.0",
"miragejs": "^0.1.41",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-loading": "^2.0.3",
"redux": "^4.0.5",
"redux-promise-middleware": "^6.1.2",
"redux-thunk": "^2.3.0",
"typesafe-actions": "^5.1.0"
}
}