-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.19 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
{
"name": "groceries",
"version": "0.5.0",
"type": "module",
"homepage": "https://groceries.tools/",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"docs:update": "auto-changelog -p && git add CHANGELOG.md && git commit -m \"📝 update changelog\"",
"linter:fix": "eslint --fix src",
"nuke": "rm -rf node_modules && rm package-lock.json && npm install",
"preview": "vite preview",
"test": "vitest run src",
"test:coverage": "npm run test -- --coverage",
"test:e2e": "cypress run",
"test:e2e:ui": "cypress open",
"test:ui": "npm run test -- --ui",
"update-version": "node ./update-version.mjs"
},
"engines": {
"node": "20.2.0 || 18.x"
},
"dependencies": {
"classnames": "2.3.2",
"pouchdb": "8.0.1",
"react": "18.2.0",
"react-confirm-alert": "3.0.6",
"react-dom": "18.2.0",
"react-icons": "4.4.0",
"react-transition-group": "4.4.5",
"uuid": "9.0.0",
"valtio": "1.7.0",
"wouter": "2.7.5"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "0.2.3",
"@esbuild-plugins/node-modules-polyfill": "0.2.2",
"@faker-js/faker": "7.5.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",
"@types/node": "20.3.2",
"@types/pouchdb": "6.4.0",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@types/react-transition-group": "4.4.5",
"@types/uuid": "8.3.4",
"@vitejs/plugin-react": "4.0.0",
"@vitest/coverage-v8": "0.32.2",
"@vitest/ui": "0.32.2",
"auto-changelog": "2.4.0",
"cypress": "12.17.3",
"cypress-vite": "1.4.2",
"eslint-config-prettier": "8.5.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"gh-pages": "4.0.0",
"jsdom": "20.0.1",
"pouchdb-adapter-memory": "8.0.1",
"prettier": "2.7.1",
"rollup-plugin-node-polyfills": "0.2.1",
"sass": "1.55.0",
"typescript": "4.8.3",
"vite": "4.3.9",
"vite-plugin-pwa": "0.15.0",
"vitest": "0.32.2"
},
"auto-changelog": {
"commitLimit": false,
"unreleased": true,
"sortCommits": "date-desc"
}
}