-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.24 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
{
"name": "react-retro-calculator",
"version": "0.2.0",
"description": "Online Retro Calculator using typescript-reactJs",
"private": true,
"author": "Noushad Puthen Peedikayil",
"license": "MIT",
"keywords": [
"typescript",
"react",
"state machine",
"calculator",
"retro calculator",
"calculator with memory functions"
],
"repository": {
"type": "git",
"url": "https://github.com/noushad-pp/react-calculator"
},
"homepage": "https://noushad-pp.github.io/react-retro-calculator/",
"dependencies": {
"@xstate/inspect": "^0.6.5",
"@xstate/react": "^3.0.0",
"@xstate/test": "^0.5.1",
"classnames": "^2.3.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-scripts": "5.0.1",
"sass": "^1.77.8",
"typescript": "^4.6.3",
"web-vitals": "^2.1.4",
"workbox-background-sync": "^6.5.3",
"workbox-broadcast-update": "^6.5.3",
"workbox-cacheable-response": "^6.5.3",
"workbox-core": "^6.5.3",
"workbox-expiration": "^6.5.3",
"workbox-google-analytics": "^6.5.3",
"workbox-navigation-preload": "^6.5.3",
"workbox-precaching": "^6.5.3",
"workbox-range-requests": "^6.5.3",
"workbox-routing": "^6.5.3",
"workbox-strategies": "^6.5.3",
"workbox-streams": "^6.5.3",
"xstate": "^4.31.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/user-event": "^14.1.0",
"@types/classnames": "^2.3.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.24",
"@types/react": "^18.0.5",
"@types/react-dom": "^18.0.1",
"@types/webpack-env": "^1.16.4",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.8",
"prettier": "^2.6.2",
"source-map-explorer": "^2.5.2"
},
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js' --only-mapped",
"install:fixed": "yarn install --frozen-lockfile",
"start": "react-scripts start",
"build": "react-scripts build",
"format": "prettier --write 'src/**/*.{scss,css,json,yaml,yml,md}'",
"lint": "eslint --fix 'src/**/*.{js,jsx,ts,tsx}'",
"test": "react-scripts test",
"test:no-watch": "CI=true react-scripts test --env=jsdom --passWithNoTests",
"postinstall": "husky install",
"eject": "react-scripts eject",
"prepare": "husky install"
},
"lint-staged": {
"*.{scss,css,json,yaml,yml,md}": [
"yarn format"
],
"*.{js,jsx,ts,tsx}": [
"yarn lint",
"yarn test:no-watch"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "[email protected]+sha512.ff4579ab459bb25aa7c0ff75b62acebe576f6084b36aa842971cf250a5d8c6cd3bc9420b22ce63c7f93a0857bc6ef29291db39c3e7a23aab5adfd5a4dd6c5d71"
}