-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.09 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
{
"name": "github-api-search",
"version": "1.0.0",
"description": "",
"main": "index.js",
"jest": {
"testPathIgnorePatterns": [
"server"
],
"setupFiles": [
"./setupTests.js"
]
},
"scripts": {
"server": "nodemon server/index.js",
"dev": "NODE_ENV=development webpack-dev-server --config ./webpack-config.js --mode development",
"build": "NODE_ENV=production webpack --config ./webpack-config.js --mode production",
"start": "run-p server dev",
"lint": "eslint --print-config .eslintrc | eslint-config-prettier-check",
"test": "jest --verbose ./src",
"test:watch": "jest --watch ./src",
"test:coverage": "jest --coverage ./src",
"server-test": "mocha \"server/**/*.test.js\""
},
"dependencies": {
"@svgr/webpack": "^4.3.0",
"axios": "^0.19.0",
"chai": "^4.2.0",
"change-case": "^3.1.0",
"clean-webpack-plugin": "^3.0.0",
"compression": "^1.7.4",
"copy-webpack-plugin": "^5.0.3",
"dotenv": "^8.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint-formatter-pretty": "^2.1.1",
"express": "^4.17.1",
"get-port": "^5.0.0",
"html-webpack-plugin": "^3.2.0",
"http-proxy": "^1.17.0",
"jest-fetch-mock": "^2.1.2",
"lodash": "^4.17.13",
"mini-css-extract-plugin": "^0.7.0",
"mocha": "^6.1.4",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"node-sass-glob-importer": "^5.3.2",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-inlinesvg": "^0.8.4",
"react-paginate": "^6.3.0",
"react-redux": "^7.1.0",
"redux": "^4.0.1",
"redux-saga": "^1.0.3",
"styled-components": "^4.3.2",
"styled-normalize": "^8.0.6",
"terser-webpack-plugin": "^1.3.0",
"webpack": "^4.35.0",
"webpack-merge": "^4.2.1"
},
"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/plugin-transform-spread": "^7.2.2",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.2",
"core-js": "^3.1.4",
"css-loader": "^3.0.0",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^1.6.1",
"file-loader": "^4.0.0",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"nodemon": "^1.19.1",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"postcss-loader": "^3.0.0",
"prettier": "^1.18.2",
"react-dev-utils": "^9.0.1",
"react-hot-loader": "^4.11.1",
"sass-loader": "^7.1.0",
"url-loader": "^2.0.1",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
},
"author": "Callam Williams",
"license": "ISC"
}