-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
120 lines (120 loc) · 3.41 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
119
120
{
"name": "react-printable-cv",
"version": "2.3.0",
"description": "",
"main": "./src/index.js",
"scripts": {
"start": "webpack-dev-server --open --mode development",
"dev": "webpack --mode development",
"pdf": "npm run start && node pdf_scripts/pdf.js",
"build": "webpack --mode production",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.{js,jsx}",
"i18nextract": "i18next"
},
"keywords": [
"react",
"printable",
"cv",
"curriculum-vitae",
"resume",
"pdf"
],
"author": "Tom Chen",
"license": "MIT",
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.3.1",
"core-js": "^3.6.5",
"dayjs": "^1.8.29",
"formik": "^2.1.5",
"i18next": "^19.6.1",
"immer": "7.0.5",
"prop-types": "^15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-helmet": "^6.1.0",
"react-i18next": "^11.7.0",
"react-markdown": "^4.3.1",
"react-redux": "7.2.0",
"redux": "4.0.5",
"redux-thunk": "2.3.0",
"regenerator-runtime": "^0.13.5",
"yup": "^0.29.1"
},
"devDependencies": {
"@babel/core": "7.10.5",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "7.10.4",
"@babel/preset-react": "7.10.4",
"@babel/runtime": "^7.10.5",
"@svgr/webpack": "5.4.0",
"@testing-library/dom": "^7.21.0",
"@testing-library/react": "^10.4.7",
"babel-eslint": "^10.1.0",
"babel-jest": "26.1.0",
"babel-loader": "8.1.0",
"babel-plugin-minify-dead-code-elimination": "^0.5.1",
"base64-inline-loader": "^1.1.1",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "3.6.0",
"cssnano": "4.1.10",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.5.0",
"eslint": "7.4.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-import-resolver-webpack": "^0.12.2",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.20.3",
"eslint-plugin-react-hooks": "4.0.8",
"file-loader": "6.0.0",
"html-inline-css-webpack-plugin": "^1.8.1",
"html-loader": "1.1.0",
"html-webpack-plugin": "4.3.0",
"i18next-parser": "^2.1.1",
"identity-obj-proxy": "^3.0.0",
"image-webpack-loader": "^6.0.0",
"jest": "26.1.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "4.14.1",
"postcss-loader": "3.0.0",
"postcss-normalize": "9.0.0",
"postcss-preset-env": "6.7.0",
"prettier": "2.0.5",
"react-dev-utils": "10.2.1",
"react-test-renderer": "^16.13.1",
"redux-mock-store": "^1.5.4",
"remove-files-webpack-plugin": "^1.4.3",
"sass-loader": "9.0.2",
"style-loader": "1.2.1",
"stylelint": "^13.6.1",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-sass-guidelines": "^7.0.0",
"stylelint-order": "^4.1.0",
"terser-webpack-plugin": "^3.0.6",
"url-loader": "4.1.0",
"webpack": "4.43.0",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}