-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.98 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
{
"name": "kalob.net",
"version": "1.0.0",
"description": "My personal portfolio site",
"main": "index.js",
"dependencies": {
"@material-ui/core": "^4.9.10",
"@material-ui/icons": "^4.9.1",
"@material-ui/styles": "^4.9.10",
"@material-ui/system": "^4.9.10",
"axios": "^0.19.2",
"connected-react-router": "^6.8.0",
"file-loader": "^6.0.0",
"history": "^4.10.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"store": "^2.0.12"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.8",
"@babel/preset-env": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"@babel/preset-stage-2": "^7.8.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.3.0",
"babel-loader": "^8.1.0",
"babel-runtime": "^6.22.0",
"compression-webpack-plugin": "^9.2.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"happypack": "^5.0.1",
"html-webpack-plugin": "^5.5.0",
"jest": "^25.3.0",
"jsdom": "^16.2.2",
"react-addons-test-utils": "^15.6.0",
"react-hot-loader": "^4.12.20",
"react-test-renderer": "^16.13.1",
"redux-devtools": "^3.5.0",
"redux-logger": "^3.0.6",
"url-loader": "4.1.0",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3"
},
"scripts": {
"dev": "webpack-dev-server --config config/webpack/main.js",
"test": "./node_modules/.bin/jest --setupTestFrameworkScriptFile='<rootDir>/jest.setup.js' --verbose",
"coverage": "./node_modules/.bin/jest --setupTestFrameworkScriptFile='<rootDir>/jest.setup.js' --collect-coverage",
"test:watch": "./node_modules/.bin/jest --watch --setupTestFrameworkScriptFile='<rootDir>/jest.setup.js'",
"build": "webpack --config config/webpack/production.js"
},
"jest": {
"moduleNameMapper": {
"^js/(.*)": "<rootDir>/frontend/js/$1",
"\\.(jpg|jpeg|png|gif|svg)$": "<rootDir>/__mocks__/file.js"
},
"coverageDirectory": "<rootDir>/frontend/js",
"coveragePathIgnorePatterns": [
"/node_modules/",
"style.js",
"<rootDir>/frontend/js/api/index.js",
"<rootDir>/frontend/js/common/icons"
]
},
"babel": {
"plugins": [
"@babel/plugin-transform-runtime",
"@babel/plugin-proposal-class-properties",
[
"@babel/plugin-proposal-decorators",
{
"decoratorsBeforeExport": false
}
]
],
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"author": "Kalob Porter"
}