-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.46 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
104
105
106
107
108
109
110
{
"name": "prompt-crafter",
"private": true,
"version": "0.0.3",
"type": "module",
"scripts": {
"dev": "vite --port=4000",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "vitest",
"preview": "vite preview",
"deploy": "gh-pages -d dist",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build-nearly-sdprompt": "nearleyc .\\src\\common\\parsing\\sdprompt.ne -o .\\src\\common\\parsing\\sdprompt.ts",
"watch": "npm-watch"
},
"watch": {
"build-nearly-sdprompt": "src/common/parsing/sdprompt.ne"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@monaco-editor/react": "^4.5.2",
"@mui/icons-material": "^5.14.7",
"@mui/lab": "5.0.0-alpha.142",
"@mui/material": "^5.14.7",
"@react-spring/web": "9.7.3",
"@types/lodash": "^4.14.197",
"@types/react-router-dom": "^5.3.3",
"@types/react-virtualized": "^9.21.22",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@types/react-window": "^1.8.5",
"@types/sort-by": "^1.2.0",
"dedent": "^1.5.1",
"express": "^4.18.2",
"immer": "^10.0.2",
"js-yaml": "4.1.0",
"localforage": "^1.10.0",
"lodash": "^4.17.21",
"match-sorter": "^6.3.1",
"material-ui-confirm": "3.0.9",
"million": "^2.5.13",
"monaco-editor": "^0.41.0",
"moo": "^0.5.2",
"nearley": "^2.20.1",
"postcss-load-config": "^4.0.1",
"react": "^18.2.0",
"react-arborist": "^3.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "4.0.11",
"react-reflex": "^4.1.0",
"react-router-dom": "^6.15.0",
"react-spaces": "^0.4.1",
"react-transition-group": "4.4.5",
"react-use-measure": "2.1.1",
"react-virtualized": "^9.22.5",
"react-virtualized-auto-sizer": "^1.0.20",
"react-window": "^1.8.9",
"rxjs": "7.8.1",
"sass": "^1.66.1",
"seedrandom": "3.0.5",
"simple-update-notifier": "^2.0.0",
"sort-by": "^1.2.0",
"use-immer": "^0.9.0",
"vite-plugin-monaco-editor": "^1.1.0",
"zod": "^3.22.2"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.4.0",
"@storybook/addon-interactions": "^7.4.0",
"@storybook/addon-links": "^7.4.0",
"@storybook/blocks": "^7.4.0",
"@storybook/react": "^7.4.0",
"@storybook/react-vite": "^7.4.0",
"@storybook/testing-library": "^0.2.0",
"@tailwindcss/typography": "^0.5.9",
"@types/dedent": "^0.7.0",
"@types/express": "^4.17.17",
"@types/js-yaml": "^4.0.5",
"@types/moo": "^0.5.6",
"@types/nearley": "^2.11.2",
"@types/node": "^20.5.7",
"@types/prop-types": "^15.7.5",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/react-transition-group": "^4.4.6",
"@types/seedrandom": "^3.0.5",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"@vitejs/plugin-basic-ssl": "^1.0.1",
"@vitejs/plugin-react-swc": "^3.3.2",
"autoprefixer": "^10.4.15",
"depcheck": "^1.4.5",
"eslint": "^8.48.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-storybook": "^0.6.13",
"gh-pages": "^6.0.0",
"npm-watch": "^0.11.0",
"postcss": "^8.4.29",
"prop-types": "^15.8.1",
"storybook": "^7.4.0",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitest": "^0.34.3"
}
}