-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.62 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
{
"name": "jc-docs",
"version": "1.0.0",
"private": true,
"epicTemplate": true,
"scripts": {
"build": "node ./scripts/build.js",
"dev": "node ./scripts/dev.js",
"eslint": "eslint --ext ts,tsx,md,mdx src",
"test": "NODE_ENV=test jest --watchAll",
"test:coverage": "NODE_ENV=test jest --watch=false --coverage"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@babel/register": "^7.15.3",
"@epic-form/epic-dev-utils": "^1.0.5",
"@loadable/babel-plugin": "^5.13.2",
"@loadable/server": "^5.15.1",
"@loadable/webpack-plugin": "^5.15.1",
"@mdx-js/loader": "^1.6.22",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/jest": "^27.0.1",
"@types/loadable__component": "^5.13.4",
"@types/mdx-js__react": "^1.5.4",
"@types/react": "^17.0.18",
"@types/react-dom": "^17.0.9",
"@types/react-helmet": "^6.1.2",
"@types/react-router-dom": "^5.1.8",
"@types/webpack-env": "^1.16.2",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"babel-plugin-css-modules-transform": "^1.6.2",
"babel-plugin-dynamic-import-node": "^2.3.3",
"browserslist": "^4.16.7",
"chalk": "^4.1.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.2.0",
"css-minimizer-webpack-plugin": "^3.0.2",
"dotenv": "^10.0.0",
"dotenv-webpack": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-mdx": "^1.15.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"express": "^4.17.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.1",
"jest": "^27.0.6",
"jest-watch-typeahead": "^0.6.4",
"lint-staged": "^11.1.2",
"mini-css-extract-plugin": "^2.2.0",
"postcss": "^8.3.6",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^6.1.1",
"postcss-normalize": "^10.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.3.2",
"style-loader": "^3.2.1",
"terser-webpack-plugin": "^5.1.4",
"typescript": "^4.3.5",
"typings-for-css-modules-loader": "^1.7.0",
"webpack": "^5.50.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.8.0",
"webpack-dashboard": "^3.3.5",
"webpack-dev-middleware": "^5.0.0",
"webpack-dev-server": "^3.11.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^3.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@babel/runtime": "^7.15.3",
"@emotion/react": "^11.4.1",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@loadable/component": "^5.15.0",
"@mdx-js/react": "^1.6.22",
"puppeteer": "^10.2.0",
"puppeteer-core": "^10.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-router-dom": "^5.2.0"
},
"lint-staged": {
"*.{js,json,md,ts,tsx,jsx}": [
"prettier --write",
"git add"
]
}
}