-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 4.49 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
{
"name": "react-book-search-sample",
"version": "0.0.1",
"description": "Sample SPA for searching books",
"private": true,
"keywords": [
"reactjs",
"spa"
],
"author": "Danilo Cestari",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.4.5",
"body-parser": "^1.19.0",
"core-js": "^3.1.4",
"dayjs": "^1.8.14",
"express": "^4.17.1",
"material-design-icons": "^3.0.1",
"path-to-regexp": "^3.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.12.0",
"react-redux": "^7.1.0",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"redux": "^4.0.1",
"redux-observable": "^1.1.0",
"reselect": "^4.0.0",
"rxjs": "^6.5.2",
"svg-sprite-loader": "^4.1.6",
"svgo": "^1.2.2",
"svgo-loader": "^2.2.1",
"typeface-roboto": "^0.0.54",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@storybook/addon-actions": "^5.1.9",
"@storybook/react": "^5.1.9",
"@testing-library/react": "^8.0.4",
"@types/express": "^4.17.0",
"@types/jest": "^24.0.15",
"@types/react": "^16.8.22",
"@types/react-dom": "^16.8.4",
"@types/react-redux": "^7.1.1",
"@types/react-router": "^5.0.2",
"@types/react-router-dom": "^4.3.4",
"@types/storybook__addon-actions": "^3.4.3",
"@types/storybook__react": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"autoprefixer": "^9.6.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.3",
"cross-env": "^5.2.0",
"css-loader": "^3.0.0",
"cucumber": "^5.1.0",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.7.1",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^1.6.1",
"file-loader": "^4.0.0",
"gherkin-testcafe": "https://github.com/Dbuggerx/gherkin-testcafe.git",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.8.0",
"jest-dom": "^3.5.0",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.12.0",
"null-loader": "^3.0.0",
"pixelmatch": "^5.0.2",
"pngjs": "^3.4.0",
"postcss-loader": "^3.0.0",
"prettier-stylelint": "^0.4.2",
"redux-logger": "^3.0.6",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-no-unsupported-browser-features": "^3.0.2",
"stylelint-scss": "^3.8.0",
"stylelint-selector-bem-pattern": "^2.1.0",
"stylelint-webpack-plugin": "^0.10.5",
"testcafe": "^1.2.1",
"typescript": "^3.5.2",
"webpack": "^4.35.2",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2",
"webpack-manifest-plugin": "^2.0.4",
"webpack-node-externals": "^1.7.2"
},
"scripts": {
"typecheck": "tsc --resolveJsonModule",
"test": "cross-env NODE_ENV='test' jest --config config/jest/config.json --verbose",
"prestart-server": "webpack --config config/webpack/server/config.js",
"start-server": "node ./run-server.js",
"prestart": "yarn typecheck",
"start": "yarn start-server & webpack-dev-server --config config/webpack/client/config.js",
"prebuild": "yarn typecheck",
"build": "cross-env NODE_ENV=\"'production'\" webpack --config config/webpack/webpack.config.js",
"prewebpack-bundle-analyzer": "cross-env NODE_ENV=\"'production'\" webpack --profile --json --config config/webpack/client/config.js > ./stats.json",
"webpack-bundle-analyzer": "webpack-bundle-analyzer ./stats.json ./dist",
"serve": "yarn build && yarn start-server",
"storybook": "start-storybook -p 9001 -c .storybook",
"lint": "eslint -c ./config/linters/.eslintrc.json --ext tsx,ts src",
"build-storybook": "build-storybook -c .storybook -o public",
"e2e": "node testcafe"
},
"resolutions": {
"gherkin": "joscha/gherkin-javascript#joscha/fix-exefile-constructor"
}
}