-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.89 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
{
"name": "strength-application",
"description": "Calculate your 1RM and wilks score!",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"typecheck": "tsc --noEmit",
"format": "prettier -uw --cache . && git update-index --again",
"test": "jest --watch",
"test:ci": "jest --ci",
"commit": "git-cz"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"dependencies": {
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.1.3",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@reduxjs/toolkit": "^1.9.5",
"class-variance-authority": "^0.6.1",
"clsx": "^1.2.1",
"expr-eval": "^2.0.2",
"lucide-react": "^0.259.0",
"next": "^14.0.4",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.10.1",
"react-redux": "^8.1.1",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"tailwind-merge": "^1.13.2",
"tailwindcss-animate": "^1.0.6",
"usehooks-ts": "^2.9.1",
"wilks": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@commitlint/cz-commitlint": "^17.5.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "20.4.1",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@types/redux-logger": "^3.0.9",
"@types/testing-library__jest-dom": "^5.14.7",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"autoprefixer": "10.4.14",
"commitizen": "^4.3.0",
"eslint": "8.44.0",
"eslint-config-next": "13.4.9",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-jest-dom": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-testing-library": "^5.11.0",
"eslint-plugin-unicorn": "^47.0.0",
"husky": "^8.0.0",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"lint-staged": "^13.2.3",
"postcss": "8.4.25",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"tailwindcss": "3.3.2",
"typescript": "5.1.6"
},
"homepage": "https://github.com/devastion/strength-application#readme",
"bugs": {
"url": "https://github.com/devastion/strength-application/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": "Dimitar Banev <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/devastion/strength-application.git"
}
}