-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
81 lines (81 loc) · 2.75 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
{
"name": "react-commerce",
"version": "1.0.0",
"private": false,
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development --port 3000 --https --open",
"build": "webpack --mode production",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"test": "jest",
"storybook": "start-storybook -p 9001 -c .storybook"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@babel/runtime": "^7.2.0",
"babel-plugin-module-resolver": "^3.1.3",
"prop-types": "^15.6.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-responsive-carousel": "^3.1.47",
"react-router-dom": "^4.3.1",
"react-sidebar": "^3.0.2",
"script-ext-html-webpack-plugin": "^2.1.3",
"styled-components": "^4.2.0"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@storybook/react": "^4.1.13",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-styled-components": "^1.10.0",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^5.0.2",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"file-loader": "^1.1.11",
"gh-pages": "^2.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"jest": "^23.6.0",
"jest-dom": "^3.1.2",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"react-test-renderer": "^16.6.3",
"react-testing-library": "^5.9.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "4.19.1",
"webpack-cli": "2.1.4",
"webpack-dev-server": "^3.1.14"
},
"homepage": "https://lucascalazans.github.io/react-commerce/",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__tests__/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__tests__/__mocks__/styleMock.js"
},
"modulePathIgnorePatterns": [
"__mocks__",
"initial-configuration.js",
"model/mocks.js"
],
"setupFiles": [
"./__tests__/initial-configuration.js"
],
"collectCoverage": false
}
}