-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·102 lines (102 loc) · 3.72 KB
/
package.json
File metadata and controls
executable file
·102 lines (102 loc) · 3.72 KB
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
{
"name": "monikerz",
"version": "1.0.0",
"description": "GotDibbs in the haus",
"main": "index.js",
"private": true,
"author": "GotDibbs",
"scripts": {
"lint": "eslint src",
"dev:dll": "webpack --progress --env.NODE_ENV=development --config ./webpack/webpack.dll.js",
"prod:dll": "webpack --progress --env.NODE_ENV=production --config ./webpack/webpack.dll.js",
"dev": "webpack-dev-server --env.NODE_ENV=development --open --config ./webpack/webpack-dev.config.js --watch --colors",
"prod": "webpack --progress -p --env.NODE_ENV=production --config ./webpack/webpack-prod.config.js",
"deploy": "firebase deploy --only hosting",
"storybook": "start-storybook",
"test": "jest",
"test:coverage": "jest --collect-coverage",
"test:watch": "jest --watch"
},
"jest": {
"moduleNameMapper": {
"^common/(.*)$": "<rootDir>/src/common/$1",
"^data/(.*)$": "<rootDir>/src/data/$1",
"^modules/(.*)$": "<rootDir>/src/modules/$1",
"^utilities/(.*)$": "<rootDir>/src/utilities/$1"
},
"setupFilesAfterEnv": [
"./src/jest-setup.js"
]
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.27",
"@fortawesome/free-solid-svg-icons": "^5.12.1",
"@fortawesome/react-fontawesome": "^0.1.9",
"@storybook/addon-knobs": "^5.3.18",
"@xstate/react": "^0.8.1",
"classnames": "^2.2.6",
"fathom-client": "^2.0.3",
"firebase": "^7.10.0",
"moment": "^2.24.0",
"nosleep.js": "^0.9.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-helmet": "^6.0.0",
"react-hook-form": "^5.1.3",
"react-redux": "^7.2.0",
"react-redux-firebase": "^3.1.2",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"redux-firestore": "^0.13.0",
"redux-logger": "^3.0.6",
"xstate": "^4.8.0"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@honeybadger-io/webpack": "^1.2.0",
"@storybook/react": "^5.3.18",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.2",
"@types/jest": "^25.2.1",
"@types/testing-library__react": "^10.0.1",
"@welldone-software/why-did-you-render": "^4.0.5",
"@xstate/test": "^0.4.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.3.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.6.5",
"css-loader": "^3.4.2",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-defaults": "^9.0.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-react": "^7.18.3",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"jest": "^25.3.0",
"jest-in-case": "^1.0.2",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"npmlog": "^4.1.2",
"path": "^0.12.7",
"reselect": "^4.0.0",
"sass-loader": "^8.0.2",
"source-map-loader": "^0.2.4",
"style-loader": "^1.1.3",
"svg-url-loader": "^5.0.0",
"url-loader": "^4.1.0",
"webpack": "^4.42.0",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.10.3",
"webpack-hot-middleware": "^2.25.0"
}
}