-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.6 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
{
"name": "react-minimal",
"version": "2.1.0",
"description": "A minimal react starter template",
"main": "src/index.js",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --open",
"build": "cross-env NODE_ENV=production webpack",
"lint": "eslint ./src/**/**.js",
"lint:fix": "eslint ./src/**/**.js --fix",
"test": "jest",
"test:watch": "yarn run test --watch",
"test:cover": "yarn run test --coverage",
"preinstall": "npx npm-force-resolutions"
},
"author": "Andrew Zappella",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/azappella/react-minimal.git"
},
"bugs": {
"url": "https://github.com/azappella/react-minimal/issues"
},
"homepage": "https://github.com/azappella/react-minimal#readme",
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.17.8",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^5.2.0",
"css-loader": "^6.7.1",
"eslint": "^8.12.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.12.4",
"eslint-webpack-plugin": "^3.1.1",
"file-loader": "^5.1.0",
"html-webpack-plugin": "^5.5.0",
"img-loader": "^3.0.1",
"jest": "^27.5.1",
"jest-dom": "^4.0.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.16.1",
"react-testing-library": "^8.0.1",
"redux-logger": "^3.0.6",
"style-loader": "^1.3.0",
"url-loader": "^3.0.0",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^4.1.5"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.3",
"@stitches/react": "^1.2.8",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^8.0.1",
"redux": "^4.1.2",
"redux-thunk": "^2.4.1",
"wouter": "^2.8.0-alpha.2"
},
"resolutions": {
"glob-parent": "^6.0.1"
},
"jest": {
"setupFiles": [
"<rootDir>/config/tests/jest.config"
],
"transform": {
"^.+\\.js$": "babel-jest"
}
}
}