-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
116 lines (116 loc) · 3.61 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
113
114
115
116
{
"name": "react-base-code",
"version": "1.3.2",
"main": "index.js",
"author": "Vijay Dev <[email protected]> (http://vijaydev.com/)",
"repository": {
"type": "git",
"url": "git+https://github.com/iamvijaydev/react-base-code.git"
},
"license": "MIT",
"scripts": {
"setup": "yarn install",
"test": "jest --colors",
"test:u": "echo \"updating snapshots...\" && jest -u --colors",
"langs": "node build/intl/translator.js",
"dist": "yarn run langs && webpack -p --env.env=prod",
"start": "yarn run langs && webpack-dev-server --env.env=dev"
},
"dependencies": {
"@rematch/core": "^1.1.0",
"@rematch/loading": "^1.1.3",
"axios": "^0.19.0",
"base-href-webpack-plugin": "^2.0.0",
"lodash": "^4.17.15",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-intl-universal": "^2.1.1",
"react-loadable": "^5.5.0",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.1",
"react-spring": "^8.0.27",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-import-inspector": "^2.0.0",
"babel-plugin-styled-components": "^1.10.6",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"chalk": "^2.4.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^3.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"error-overlay-webpack-plugin": "^0.4.0",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.8.0",
"prettier": "1.18.2",
"react-hot-loader": "^4.12.0",
"style-loader": "^0.23.1",
"webpack": "^4.35.2",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2",
"webpack-merge": "^4.2.1",
"write-file-webpack-plugin": "^4.5.0"
},
"jest": {
"verbose": true,
"collectCoverage": false,
"collectCoverageFrom": [
"**/*.js",
"!webpack.config.js",
"!**/node_modules/**",
"!**/config/**",
"!**/build/**",
"!**/coverage/**",
"!**/dist/**"
],
"coverageThreshold": {
"global": {
"branches": 70,
"functions": 70,
"lines": 70,
"statements": 70
}
},
"moduleDirectories": [
"node_modules"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/buld/jest/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy",
"^Components(.*)$": "<rootDir>/src/components$1",
"^Pages(.*)$": "<rootDir>/src/pages$1",
"^Models(.*)$": "<rootDir>/src/models$1",
"^Services(.*)$": "<rootDir>/src/services$1",
"^Config(.*)$": "<rootDir>/config$1"
},
"setupFilesAfterEnv": [
"<rootDir>/build/jest/setupTest.js"
]
}
}