-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.41 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.41 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
73
74
75
76
77
{
"name": "my-qwik-basic-starter",
"description": "App with Routing built-in (recommended)",
"engines": {
"node": ">=15.0.0"
},
"private": true,
"scripts": {
"build": "qwik build",
"build.client": "vite build",
"build.preview": "vite build --ssr src/entry.preview.tsx",
"build.server": "vite build -c adapters/express/vite.config.ts",
"build.types": "tsc --incremental --noEmit",
"deploy": "node server/entry.express",
"dev": "vite --mode ssr",
"dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"lint": "eslint \"src/**/*.ts*\"",
"preview": "qwik build preview && vite preview --open",
"start": "vite --open --mode ssr",
"qwik": "qwik"
},
"devDependencies": {
"@babel/parser": "^7.14.6",
"@babel/traverse": "^7.14.5",
"@builder.io/qwik": "0.19.2",
"@builder.io/qwik-city": "0.4.0",
"@builder.io/qwik-react": "0.2.1",
"@emotion/react": "11.10.4",
"@emotion/styled": "11.10.4",
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@monaco-editor/react": "^4.2.0",
"@types/babel__traverse": "^7.18.3",
"@types/compression": "^1.7.2",
"@types/eslint": "8.21.0",
"@types/express": "4.17.13",
"@types/node": "^18.14.1",
"@types/node-fetch": "latest",
"@types/prettier": "^2.7.2",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@typescript-eslint/eslint-plugin": "5.50.0",
"@typescript-eslint/parser": "5.50.0",
"autoprefixer": "10.4.11",
"axios": "^1.3.2",
"buffer": "^6.0.3",
"compression": "^1.7.4",
"esbuild-wasm": "^0.14.54",
"eslint": "8.33.0",
"eslint-plugin-qwik": "0.17.4",
"events": "^3.3.0",
"express": "4.17.3",
"localforage": "^1.10.0",
"monaco-jsx-highlighter": "^1.1.8",
"mongoose": "^6.9.2",
"node-fetch": "3.3.0",
"postcss": "^8.4.16",
"prettier": "^2.3.1",
"process": "^0.11.10",
"pusher": "^5.1.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"rollup-plugin-polyfill-node": "^0.12.0",
"tailwind-scrollbar": "^2.1.0",
"tailwindcss": "^3.1.8",
"typescript": "4.9.5",
"util": "^0.12.5",
"vite": "^4.1.4",
"vite-tsconfig-paths": "3.5.0"
},
"dependencies": {
"rollup-plugin-node-builtins": "^2.1.2",
"undici": "^5.20.0"
}
}