-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
68 lines (68 loc) · 2.2 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
{
"name": "react-calculator-app",
"version": "4.0.0",
"type": "module",
"repository": "https://github.com/KaiHotz/React-Calculator-App",
"homepage": "https://KaiHotz.github.io/React-Calculator-App",
"author": "Kai Hotz",
"license": "MIT",
"private": true,
"scripts": {
"dev": "vite",
"build": "tsc && rimraf dist && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "yarn run eslint:fix && yarn run stylelint:fix",
"stylelint": "stylelint \"**/*.scss\"",
"stylelint:fix": "stylelint \"**/*.scss\" --fix",
"check-types": "tsc",
"ci": "yarn lint && yarn test --watch=false",
"test": "vitest",
"preview": "vite preview --port 8080",
"predeploy": "yarn build",
"deploy": "gh-pages -d dist",
"audit:fix": "npx yarn-audit-fix"
},
"dependencies": {
"lodash.map": "^4.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/plugin-syntax-flow": "^7.21.4",
"@babel/plugin-transform-react-jsx": "^7.22.3",
"@testing-library/dom": "^9.3.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/lodash.map": "^4.6.13",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"gh-pages": "^5.0.0",
"jsdom": "^22.1.0",
"postcss": "^8.4.24",
"postcss-scss": "^4.0.6",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"sass": "^1.62.1",
"stylelint": "^15.7.0",
"stylelint-prettier": "^3.0.0",
"stylelint-scss": "^5.0.0",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vitest": "^0.31.4",
"yarn-audit-fix": "^9.3.10"
}
}