-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
118 lines (118 loc) · 3.13 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": "scribble-stadium",
"version": "0.1.2",
"engines": {
"node": ">=14.0.0 <15.0.0",
"npm": ">=8.3.0"
},
"private": false,
"license": "MIT",
"repository": "github:BloomTech-Labs/labs-spa-starter",
"dependencies": {
"@ant-design/icons": "^4.2.2",
"@auth0/auth0-react": "^1.6.0",
"@craco/craco": "^6.4.3",
"antd": "^4.16.6",
"axios": "^0.21.1",
"craco-less": "^1.20.0",
"emailjs": "^3.4.0",
"emailjs-com": "^2.6.4",
"gsap": "^3.7.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-h5-audio-player": "^3.7.1",
"react-image-picker": "^1.1.1",
"react-pdf": "^5.0.0",
"react-pin-input": "^1.1",
"react-plotly.js": "^2.5.0",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"react-sizeme": "^3.0.2",
"react-spring": "^8.0.27",
"react-test-renderer": "^18.1",
"react-toastify": "^7.0.4",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.4",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"styled-components": "^5.2.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^13.5.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
"enzyme": "^3.11.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.0.4",
"file-loader": "^6.2.0",
"husky": "^4.2.5",
"jest-canvas-mock": "^2.2.0",
"jest-prop-type-error": "^1.1.0",
"lint-staged": "^10.2.11",
"prettier-eslint-cli": "^5.0.0"
},
"overrides": {
"react-image-picker": {
"react": "$react",
"react-dom": "$react-dom"
},
"react-pin-input": {
"react": "$react",
"react-dom": "$react-dom"
},
"@wojtekmaj/enzyme-adapter-react-17": {
"react": "$react",
"react-dom": "$react-dom"
}
},
"scripts": {
"start": "node start.js",
"build": "DISABLE_ESLINT_PLUGIN=true SKIP_PREFLIGHT_CHECK=true ESLINT_NO_DEV_ERRORS=true npx craco build",
"test": "npx craco test",
"eject": "npx react-scripts eject",
"coverage": "npm run test -- --ci --collectCoverage=true --watchAll=false",
"lint": "npx eslint 'src/**/*.{js,jsx}'",
"lint:fix": "npx eslint 'src/**/*.{js,jsx}' --fix",
"format": "npx prettier --write 'src/**/*.{js,jsx,css,scss,md,json,yml,yaml}'"
},
"lint-staged": {
"src/**/*.{js,css,jsx,json,md}": [
"npx eslint --fix",
"npx prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"coveragePathIgnorePatterns": [
"<rootDir>/src/stories/",
"<rootDir>/src/__tests__/",
"<rootDir>/node_modules/",
"<rootDir>/src/api/"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}