-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
159 lines (159 loc) · 4.83 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "browser-automation-test",
"version": "0.1.0",
"description": "Browser Automation Web",
"engines": {
"npm": ">4",
"node": "10.14.2"
},
"scripts": {
"preinstall": "node tools/nodeVersionCheck.js",
"start-message": "babel-node tools/startMessage.js",
"prestart": "npm-run-all --parallel start-message remove-dist",
"start": "npm-run-all --parallel open:src lint",
"open:src": "babel-node tools/srcServer.js",
"open:dist": "babel-node tools/distServer.js",
"lint:code": "eslint webpack/webpack.config.* src",
"lint:style": "stylelint \"src/styles/**/*.scss\"",
"lint": "npm run lint:code && npm run lint:style",
"lint:fix": "eslint --fix webpack/webpack.config.* src",
"clean-dist": "npm run remove-dist && mkdir dist",
"remove-dist": "rimraf ./dist",
"prebuild": "npm run clean-dist && npm run lint",
"build": "babel-node tools/build.js",
"prettier": "prettier --write './src/**/*.js'",
"test": "jest",
"test:cover": "npm run test -- --coverage",
"test:watch": "npm run test -- --watch",
"deploy": "npm run build && babel-node tools/deployS3",
"analyze-bundle": "babel-node ./tools/analyzeBundle.js"
},
"husky": {
"hooks": {
"pre-commit": "yarn prettier --loglevel=silent && yarn lint:fix --quiet && git add . && yarn lint --quiet"
}
},
"author": "Bernabe Gonzalez",
"license": "MIT",
"dependencies": {
"classnames": "2.2.6",
"date-fns": "1.30.1",
"humps": "2.0.1",
"isomorphic-fetch": "2.2.1",
"lodash": "4.17.11",
"mc-components": "^1.8.2",
"normalizr": "3.3.0",
"prop-types": "15.6.2",
"query-string": "5.1.1",
"react": "16.8.0",
"react-dom": "16.8.0",
"react-helmet": "5.2.0",
"react-redux": "5.1.0",
"react-router-dom": "4.3.1",
"react-syntax-highlighter": "10.2.1",
"redux": "4.0.0",
"redux-form": "7.4.2",
"redux-logger": "3.0.6",
"redux-react-session": "2.5.0",
"redux-thunk": "2.3.0",
"reselect": "^4.0.0",
"styled-components": "4.2.0",
"validate.js": "0.11.1"
},
"devDependencies": {
"assets-webpack-plugin": "3.9.5",
"autoprefixer": "9.1.1",
"aws-sdk": "2.292.0",
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "8.2.6",
"babel-jest": "23.6.0",
"babel-loader": "7.1.5",
"babel-plugin-styled-components": "1.6.4",
"babel-plugin-transform-react-constant-elements": "6.23.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.14",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-1": "6.24.1",
"babel-register": "6.26.0",
"chalk": "2.4.1",
"compression": "1.7.3",
"compression-webpack-plugin": "1.1.11",
"connect-history-api-fallback": "1.5.0",
"css-loader": "1.0.0",
"dotenv": "6.0.0",
"dotenv-webpack": "1.5.7",
"enzyme": "3.4.1",
"enzyme-adapter-react-16": "1.5.0",
"eslint": "5.15.3",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "4.1.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-react": "7.12.4",
"eslint-plugin-react-hooks": "1.0.0",
"express": "4.16.3",
"file-loader": "1.1.11",
"html-webpack-plugin": "3.2.0",
"husky": "1.3.1",
"identity-obj-proxy": "3.0.0",
"jest": "23.6.0",
"json-loader": "0.5.7",
"mime": "2.3.1",
"mini-css-extract-plugin": "0.4.3",
"nock": "9.6.1",
"node-sass": "4.11.0",
"npm-run-all": "4.1.3",
"opn": "5.3.0",
"optimize-css-assets-webpack-plugin": "5.0.1",
"postcss-loader": "3.0.0",
"prettier": "1.16.4",
"prompt": "1.0.0",
"react-hot-loader": "4.8.2",
"react-test-renderer": "16.5.2",
"rimraf": "2.6.2",
"sass-loader": "7.1.0",
"serialize-javascript": "1.5.0",
"style-loader": "0.22.1",
"stylelint": "8.4.0",
"stylelint-config-standard": "18.2.0",
"stylelint-order": "0.6.0",
"url-loader": "1.0.1",
"webpack": "4.19.1",
"webpack-bundle-analyzer": "2.13.1",
"webpack-dev-middleware": "3.1.3",
"webpack-hot-middleware": "2.22.3",
"webpack-md5-hash": "0.0.6",
"webpack-node-externals": "1.7.2",
"workbox-webpack-plugin": "3.6.2"
},
"jest": {
"moduleNameMapper": {
"\\.(css|scss)$": "identity-obj-proxy",
"^.+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga|ico)$": "<rootDir>/tools/fileMock.js"
},
"moduleDirectories": [
"node_modules",
"src"
],
"setupTestFrameworkScriptFile": "<rootDir>/tools/testSetup.js",
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"keywords": [
"react",
"redux",
"base",
"starter",
"kit",
"rootstrap",
"boilerplate"
],
"repository": {
"type": "git",
"url": ""
}
}