-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.88 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.88 KB
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
{
"name": "proximity-post-it",
"version": "0.1.0",
"scripts": {
"start": "npm run build && node server.js",
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"lint": "eslint src --cache -f table",
"lint:f": "eslint src --fix",
"prettier": "prettier src --check",
"test": "jest",
"test:c": "jest --coverage --watchAll=false --ci --passWithNoTests",
"test:cw": "jest --coverage --watchAll",
"ci": "npm run lint && npm run prettier && npm run test:c"
},
"dependencies": {
"@reduxjs/toolkit": "~2.2.5",
"react": "~18.3.1",
"react-cool-dimensions": "~3.0.1",
"react-dom": "~18.2.0",
"react-redux": "~9.1.2",
"react-router-dom": "~6.24.0"
},
"devDependencies": {
"@testing-library/jest-dom": "~6.4.5",
"@testing-library/react": "~15.0.5",
"@testing-library/user-event": "~14.5.2",
"@types/jest": "~26.0.24",
"@types/node": "~20.14.9",
"@types/react": "~18.3.3",
"@types/react-dom": "~18.2.23",
"@types/react-router-dom": "~5.1.7",
"@types/testing-library__jest-dom": "~6.0.0",
"@typescript-eslint/eslint-plugin": "~4.33.0",
"@typescript-eslint/parser": "~4.33.0",
"@vitejs/plugin-react-refresh": "~1.3.6",
"autoprefixer": "~10.4.19",
"eslint": "~7.32.0",
"eslint-config-prettier": "~9.1.0",
"eslint-config-standard": "~16.0.2",
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-jest": "~28.6.0",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-promise": "~5.2.0",
"eslint-plugin-react": "~7.34.3",
"husky": "~9.0.11",
"jest": "~27.0.6",
"jest-coverage-thresholds-bumper": "~1.1.0",
"lint-staged": "~15.2.7",
"postcss": "~8.4.39",
"prettier": "~3.2.5",
"rollup-plugin-visualizer": "~5.12.0",
"tailwindcss": "~3.4.3",
"ts-jest": "~27.0.3",
"typescript": "~4.9.5",
"vite": "~5.2.10",
"vite-plugin-svgr": "~4.2.0",
"vite-tsconfig-paths": "~4.3.2"
},
"engines": {
"node": "~14.17.0",
"npm": "~6.14.13"
},
"author": {
"name": "Israel Antonio Rosales Laguan",
"email": "israellaguan@gmail.com",
"gitHub": "https://github.com/Israel-Laguan",
"linkedIn": "https://www.linkedin.com/in/israellaguan/",
"hireable": true
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"npm run test:c",
"npm run test:tb",
"git add package.json"
],
"*.{js,jsx,ts,tsx,css,md}": "prettier --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Israel-Laguan/proximity-post-it.git"
},
"bugs": {
"url": "https://github.com/Israel-Laguan/proximity-post-it/issues"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"license": "ISC"
}