-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
77 lines (77 loc) · 2.5 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
{
"name": "react-pages-boilerplate",
"version": "1.0.0",
"description": "Simple boilerplate for working with React, redux, react-router and Github Pages",
"private": "true",
"main": "index.js",
"scripts": {
"test": "jest",
"prettier": "prettier 'src/**/**/*.?(js|jsx)' --write",
"start": "webpack serve",
"build": "cross-env NODE_ENV=production webpack --progress --colors",
"deploy": "npm run build && gh-pages -d dist",
"lint": "eslint src --ext .ts --ext .tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rtivital/react-pages-boilerplate.git"
},
"author": "Vitaly Rtishchev <rtivital@gmail.com> (http://github.com/rtivital)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rtivital/react-pages-boilerplate/issues"
},
"homepage": "https://github.com/rtivital/react-pages-boilerplate#readme",
"dependencies": {
"@mantine/core": "^2.2.0",
"@mantine/eslint-config": "2.2.0",
"@mantine/hooks": "^2.2.0",
"classnames": "^2.3.1",
"open-color": "^1.8.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-jss": "^10.7.1",
"react-router-dom": "^5.2.0",
"webpack-bundle-analyzer": "^4.4.2"
},
"devDependencies": {
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.8",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.3",
"chalk": "^4.1.2",
"cname-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.3",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"eslint": "^7.27.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-import-resolver-webpack": "^0.13.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"favicons": "^6.2.2",
"favicons-webpack-plugin": "4.2.0",
"file-loader": "^6.2.0",
"gh-pages": "^3.2.3",
"git-repo-name": "^1.0.1",
"html-webpack-plugin": "^4.4.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"open-browser-webpack-plugin": "^0.0.5",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"terser-webpack-plugin": "^4.1.0",
"ts-jest": "^27.0.4",
"ts-loader": "8.0.14",
"typescript": "^4.3.5",
"webpack": "^4.46.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}