-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.36 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.36 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
{
"name": "pytch-webapp",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-common-types": "^7.1.0",
"@fortawesome/fontawesome-svg-core": "^7.1.0",
"@fortawesome/free-regular-svg-icons": "^7.1.0",
"@fortawesome/free-solid-svg-icons": "^7.1.0",
"@fortawesome/react-fontawesome": "^3.1.0",
"@types/diff": "^5.0.3",
"bootstrap": "^5.3.8",
"cypress-real-events": "^1.14.0",
"date-fns": "^4.1.0",
"dexie": "^4.2.1",
"diff": "^5.1.0",
"easy-peasy": "^6.1.0",
"file-saver": "^2.0.5",
"jszip": "^3.10.1",
"marked": "^17.0.1",
"mime-types": "^2.1.35",
"react": "^19.2.0",
"react-ace": "^14.0.1",
"react-bootstrap": "^2.10.10",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^19.2.0",
"react-error-boundary": "^6.0.0",
"react-image-crop": "^11.0.10",
"react-redux": "^9.2.0",
"react-router-dom": "^7.9.6",
"scratchblocks": "^3.6.2",
"standardized-audio-context": "^25.3.54",
"zod": "^4.1.13"
},
"scripts": {
"cy:open": "cypress open",
"cy:run:quiet": "cypress run --quiet",
"cy:parallel": "cypress-parallel -s cy:run:quiet -t ${CY_PARALLEL_N_THREADS-8} -d 'cypress/e2e/**/*.cy.ts'",
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src cypress --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview -l info -d",
"mocha": "ts-mocha -p ./unit-tests/tsconfig.json --watch --watch-files \"unit-tests/**/*.spec.ts\",\"src/**/*.ts\" unit-tests/**/*.spec.ts unit-tests/*.spec.ts"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/file-saver": "^2.0.5",
"@types/marked": "^5.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"@vitejs/plugin-react": "^5.1.1",
"chai": "^4.3.7",
"cypress": "^13.17.0",
"cypress-file-upload": "^5.0.8",
"cypress-parallel": "^0.13.0",
"cypress-wait-until": "^1.7.1",
"eslint": "^9.14.0",
"eslint-plugin-react": "^7.37.0",
"prettier": "^3.0.0",
"sass-embedded": "^1.93.3",
"ts-mocha": "^10.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.13.0",
"vite": "^7.2.4"
}
}