-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.26 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": "Workflowish",
"version": "0.1.0",
"description": "",
"scripts": {
"prestart": "node-git-hooks",
"start": "vite",
"start-backend": "tsx backend-src/index.ts",
"build": "vite build --outDir backend-src/static",
"test-continuous": "jest --watch",
"data-cli": "tsx backend-src/cli.ts",
"test": "jest",
"typewatch": "tsc --noEmit --watch",
"lint": "eslint . --ext .ts,.tsx --max-warnings=0",
"verbump": "bash .githooks/verbump.sh",
"deploy-to-gh-pages": "tsx .githooks/deploy-to-gh-pages.ts"
},
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@monaco-editor/react": "^4.4.6",
"@mui/material": "^5.11.12",
"@mui/x-data-grid": "^6.10.0",
"@testing-library/user-event": "^14.4.3",
"@types/json-stable-stringify": "^1.0.34",
"argparse": "^2.0.1",
"body-parser": "^1.20.2",
"commander": "^10.0.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"jest-esbuild": "^0.3.0",
"json-stable-stringify": "^1.0.2",
"localforage": "^1.10.0",
"react": "^18.2.0",
"react-contenteditable": "^3.3.7",
"react-contexify": "^6.0.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"sanitize-html": "^2.10.0",
"tsx": "^3.12.6",
"uuid": "^9.0.0"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@testing-library/react": "^14.0.0",
"@types/argparse": "^2.0.10",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^18.14.6",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react-test-renderer": "^18.0.0",
"@types/sanitize-html": "^2.8.1",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"@vitejs/plugin-react": "^4.0.3",
"babel-preset-nano-react-app": "^0.1.0",
"esbuild": "^0.18.11",
"eslint": "^8.35.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"node-git-hooks": "^1.0.7",
"react-test-renderer": "^18.2.0",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"typescript": "^4.8.4",
"vite": "^4.4.4",
"vite-plugin-pwa": "^0.16.4",
"vite-tsconfig-paths": "^4.0.5"
}
}