This repository has been archived by the owner on Mar 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.68 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
{
"name": "js-smart-shuffle-words",
"version": "1.8.0",
"author": "W3LabKr",
"description": "Shuffle the words on each line",
"keywords": [
"js",
"javascript",
"react",
"reactjs",
"shuffle",
"words"
],
"main": "src/index.js",
"homepage": "./",
"private": true,
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"clean:dir": "rm -rf node_modules",
"clean:cache": "yarn cache clean",
"clean": "yarn clean:dir && yarn clean:cache",
"reinstall": "yarn clean && yarn install",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"format": "prettier --check ./src",
"format:fix": "prettier --write ./src",
"version": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s && git add CHANGELOG.md",
"version:init": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
},
"dependencies": {
"@craco/craco": "^6.4.5",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@fontsource/roboto": "^4.5.8",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.9.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.2",
"axios": "^0.27.2",
"conventional-changelog-cli": "^2.2.2",
"copy-to-clipboard": "^3.3.2",
"gh-pages": "^4.0.0",
"i18next": "^21.9.0",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-ga": "^3.3.1",
"react-helmet-async": "^1.3.0",
"react-i18next": "^11.18.3",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"recoil": "^0.7.4",
"recoil-persist": "^4.2.0",
"web-vitals": "^2.1.4",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/eslint-parser": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-react-hooks": "^4.6.0",
"global": "^4.4.0",
"npm-check-updates": "^16.0.5",
"prettier": "^2.7.1",
"yarn-upgrade-all": "^0.7.1"
}
}