-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.6 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.6 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
{
"name": "javascript-helpers",
"description": "JS Development helpers - use them if you need them",
"version": "1.2.3",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"build:local": "PUBLIC_URL=http://localhost:3000/ yarn build",
"serve": "serve build/",
"test": "yarn test:unit && yarn test:e2e",
"test:unit": "jest",
"test:e2e": "jest --config jest.e2e-config.js",
"test:watch": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "REACT_APP_BUILD_TIME=$(date +\"%Y-%m-%d - %H:%M:%S\") gh-pages -d build --message \"[skip ci] Updates\"",
"prepare": "husky install",
"postinstall": "yarn playwright install"
},
"dependencies": {
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^25.2.1",
"@types/node": "^18.0.0",
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6",
"@types/react-redux": "^7.1.7",
"@types/serve-handler": "^6.1.1",
"bootstrap": "4.3.1",
"gh-pages": "^2.1.1",
"jest": "28",
"jest-environment-jsdom": "^28.1.1",
"jest-playwright-preset": "^1.7.2",
"playwright": "^1.22.2",
"react": "16.10.2",
"react-bootstrap": "^1.0.0",
"react-dom": "16.10.2",
"react-redux": "7.1.1",
"react-scripts": "3.2.0",
"redux": "4.0.4",
"serve": "^13.0.2",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"devDependencies": {
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"husky": "6.0.0",
"lint-staged": "10.5.4",
"prettier": "2.2.1"
},
"eslintConfig": {
"extends": "react-app"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": true,
"singleQuote": true
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^4.1.1",
"**/@typescript-eslint/parser": "^4.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/kbanach/JavaScript-Helpers.git"
},
"author": "kbanach",
"license": "ISC",
"bugs": {
"url": "https://github.com/kbanach/JavaScript-Helpers/issues"
},
"homepage": "http://kbanach.github.io/JavaScript-Helpers",
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
],
"*.{json,js,ts}": [
"prettier --write"
]
}
}