-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.9 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
{
"name": "spacex-launcher",
"version": "1.0.0",
"description": "SpaceX Launcher list using React SSR.",
"main": "index.js",
"author": "Kiran LM <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kiranlm/spacex-launcher-ui"
},
"dependencies": {
"@loadable/component": "^5.14.1",
"compression": "^1.7.4",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint-loader": "^4.0.2",
"express": "^4.17.1",
"history": "^5.0.0",
"node-fetch": "^2.6.1",
"prop-types": "^15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-saga": "^1.1.3"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^2.0.1",
"copy-webpack-plugin": "^6.3.0",
"css-loader": "^2.1.1",
"css-minimizer-webpack-plugin": "^1.1.5",
"eslint": "^7.13.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-html": "^6.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"ignore-loader": "^0.1.2",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^0.6.0",
"node-sass": "^4.11.0",
"prettier": "^2.1.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.3.1",
"webpack-merge": "^4.2.1",
"webpack-node-externals": "^1.7.2",
"workbox-webpack-plugin": "^5.1.4"
},
"scripts": {
"test": "jest",
"start": "node ./dist-ssr/index.js",
"build": "webpack --config ./webpack-config/webpack.prod.js",
"start:dev": "webpack-dev-server --config ./webpack-config/webpack.dev.js --host 0.0.0.0 --history-api-fallback",
"lint": "eslint --config=./.eslintrc src/**/**/*.js"
},
"heroku-run-build-script": true,
"jest": {
"verbose": true,
"testPathIgnorePatterns": [
"/node_modules/"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"setupFiles": [
"./src/setupTest.js"
],
"moduleNameMapper": {
"^.+\\.(css|less|scss)$": "babel-jest"
}
}
}