generated from Alvadda/react-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.92 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
{
"name": "time-tracker",
"version": "0.0.3",
"description": "",
"main": "index.tsx",
"scripts": {
"start": "npm run dev",
"build": "npm run clean && webpack --mode=production --env=prod",
"dev": "webpack serve --open --hot",
"qa": "webpack serve",
"dev:test": "concurrently --kill-others \"npm run emu:test\" \"npm run qa\"",
"dev:emu": "concurrently --kill-others \"npm run emu\" \"npm run dev\"",
"clean": "rimraf dist",
"lint:fix": "eslint --fix \"./src/**/*.{js,jsx,ts,tsx,json}\"",
"lint": "eslint \"./src/**/*.{js,jsx,ts,tsx,json}\"",
"serve": "webpack --mode=production --env=prod && npx serve -s dist",
"emu": "firebase emulators:start --import=./mock/dev/firebase --export-on-exit",
"emu:test": "firebase emulators:start --import=./mock/test/firebase --only auth,firestore",
"test:ui": "start-server-and-test dev:test http://localhost:8080 cy:ui",
"test": "npm run test:unit && npm run test:ui",
"test:unit": "jest",
"test:unit:w": "jest --watchAll",
"cy:ui": "cypress run --browser chrome",
"cy:open": "cypress open",
"serviceAccount": "cd bin && node createServiceAccount.js",
"deploy:prod": "netlify deploy --dir=dist --prod"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.6.0",
"@mui/lab": "^5.0.0-alpha.76",
"@mui/material": "^5.6.0",
"@mui/styles": "^5.6.0",
"@react-pdf/renderer": "^2.1.1",
"@reduxjs/toolkit": "^1.8.1",
"assert": "^2.0.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"convert-array-to-csv": "^2.0.0",
"dotenv": "^16.0.0",
"firebase": "^9.6.10",
"i18next": "^21.6.14",
"moment": "^2.29.2",
"process": "^0.11.10",
"react": "^18.0.0",
"react-colorful": "^5.5.1",
"react-device-detect": "^2.1.2",
"react-dom": "^18.0.0",
"react-hook-form": "^7.29.0",
"react-redux": "^7.2.8",
"redux": "^4.1.2",
"stream-browserify": "^3.0.0",
"util": "^0.12.4",
"workbox-window": "^6.5.2"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.0.0",
"@types/firebase": "^3.2.1",
"@types/jest": "^27.4.1",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.4",
"concurrently": "^7.1.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"cypress": "^9.5.3",
"cypress-firebase": "^2.2.1",
"del": "^6.0.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-testing-library": "^5.2.1",
"firebase-admin": "^9.12.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"prettier-plugin-organize-imports": "^2.3.4",
"react-i18next": "^11.16.2",
"redux-devtools": "^3.7.0",
"sass": "^1.49.11",
"sass-loader": "^12.6.0",
"start-server-and-test": "^1.14.0",
"style-loader": "^3.3.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"webpack": "^5.71.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.0",
"webpack-pwa-manifest": "^4.3.0",
"workbox-precaching": "^6.5.2",
"workbox-webpack-plugin": "^6.5.2"
},
"browserslist": [
"> .5% or last 2 versions"
]
}