forked from codeforpdx/PASS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.47 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
95
96
97
98
99
100
101
102
103
{
"name": "pass",
"homepage": ".",
"version": "0.11.0",
"description": "",
"scripts": {
"start": "concurrently --kill-others \"npm run dev\" \"npm run podserver\"",
"dev": "vite --host",
"build": "vite build",
"test": "vitest",
"test:ci": "vitest run",
"coverage": "vitest run --coverage",
"preview": "vite preview",
"docs": "jsdoc --readme ./docs/README.md -c jsdoc.config.json",
"docs:clear": "node clearDocs.js",
"lint": "eslint \"src/**/*.js\" \"src/**/*.jsx\" \"test/**/*.js\" \"test/**/*.jsx\" \"__mocks__/**/*.js\"",
"lint:fix": "eslint --fix \"src/**/*.js\" \"src/**/*.jsx\" \"test/**/*.js\" \"test/**/*.jsx\" \"__mocks__/**/*.js\"",
"prettier:check": "prettier --check \"src/**/*.js\" \"src/**/*.jsx\" \"test/**/*.js\" \"test/**/*.jsx\"",
"prettier:run": "prettier --write \"src/**/*.js\" \"src/**/*.jsx\" \"test/**/*.js\" \"test/**/*.jsx\"",
"podserver:temp": "community-solid-server",
"podserver": "community-solid-server -c @css:config/file.json -f local_temp_server_files/",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.10.8",
"@emotion/styled": "^11.10.8",
"@inrupt/solid-client": "^1.24.0",
"@inrupt/solid-client-authn-browser": "1.15.0",
"@inrupt/vocab-common-rdf": "^1.0.5",
"@mui/base": "^5.0.0-beta.0",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.12.2",
"@mui/styled-engine-sc": "^5.12.0",
"@mui/system": "^5.12.1",
"@mui/utils": "^5.14.18",
"@mui/x-data-grid": "^6.16.2",
"@mui/x-date-pickers": "^6.5.0",
"@tanstack/react-query": "^4.32.0",
"@zxing/browser": "^0.1.3",
"dayjs": "^1.11.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-paginate": "^8.2.0",
"react-router-dom": "^6.10.0",
"react-router-hash-link": "^2.4.3",
"react-webcam": "^7.2.0",
"styled-components": "^5.3.10",
"uuid": "^9.0.0"
},
"browserslist": [
"last 3 and_chr versions",
"last 3 chrome versions",
"last 3 opera versions",
"last 3 ios_saf versions",
"last 3 safari versions",
"last 3 edge versions"
],
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.1.0",
"@solid/community-server": "^7.0.3",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.1",
"@vitejs/plugin-react": "^4.1.0",
"@vitest/coverage-v8": "^0.34.6",
"buffer": "^5.7.1",
"concurrently": "^8.2.2",
"css-mediaquery": "^0.1.2",
"eslint": "^8.35.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^40.1.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jsdoc": "^4.0.0",
"jsdoc-tsimport-plugin": "^1.0.5",
"jsdom": "^22.0.0",
"lint-staged": "^14.0.0",
"prettier": "^2.8.4",
"rollup-plugin-visualizer": "^5.9.0",
"string_decoder": "^1.3.0",
"vite": "^4.5.0",
"vitest": "^0.34.6"
},
"lint-staged": {
"*.{js,css,ts,tsx,jsx}": [
"npm run lint:fix",
"npm run prettier:run"
]
}
}