[READ-ONLY] Mirror of https://github.com/danielroe/vuejslive. A demo of integrating Vue, Vite and Nitro for Vue.js Live London 2023. vuejslive.vercel.app
0

Configure Feed

Select the types of activity you want to include in your feed.

chore: init

author
Daniel Roe
date (May 12, 2023, 12:40 PM +0100) commit 1179a84e
+65
+5
.gitignore
··· 1 + node_modules 2 + .output 3 + .nitro 4 + functions 5 + .vercel
+16
package.json
··· 1 + { 2 + "name": "vuejslive", 3 + "version": "1.0.0", 4 + "private": true, 5 + "scripts": { 6 + "test": "echo \"Error: no test specified\" && exit 1" 7 + }, 8 + "author": "Daniel Roe <daniel@roe.dev>", 9 + "dependencies": { 10 + "@picocss/pico": "^1.5.10" 11 + }, 12 + "devDependencies": { 13 + "@types/node": "^20.1.3", 14 + "prettier": "^2.8.8" 15 + } 16 + }
+30
pnpm-lock.yaml
··· 1 + lockfileVersion: '6.0' 2 + 3 + dependencies: 4 + '@picocss/pico': 5 + specifier: ^1.5.10 6 + version: 1.5.10 7 + 8 + devDependencies: 9 + '@types/node': 10 + specifier: ^20.1.3 11 + version: 20.1.3 12 + prettier: 13 + specifier: ^2.8.8 14 + version: 2.8.8 15 + 16 + packages: 17 + 18 + /@picocss/pico@1.5.10: 19 + resolution: {integrity: sha512-+LafMsrwPxXQMk6sI///TmSInCwwZmq+K7SikyL3N/4GhhwzyPC+TQLUEqmrLyjluR+uIpFFcqjty30Rtr6GxQ==} 20 + dev: false 21 + 22 + /@types/node@20.1.3: 23 + resolution: {integrity: sha512-NP2yfZpgmf2eDRPmgGq+fjGjSwFgYbihA8/gK+ey23qT9RkxsgNTZvGOEpXgzIGqesTYkElELLgtKoMQTys5vA==} 24 + dev: true 25 + 26 + /prettier@2.8.8: 27 + resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} 28 + engines: {node: '>=10.13.0'} 29 + hasBin: true 30 + dev: true
+7
prettier.config.cjs
··· 1 + module.exports = { 2 + semi: false, 3 + singleQuote: true, 4 + printWidth: 100, 5 + trailingComma: 'es5', 6 + arrowParens: 'avoid', 7 + }
+7
tsconfig.json
··· 1 + { 2 + "compilerOptions": { 3 + "strict": true, 4 + "allowSyntheticDefaultImports": true, 5 + "forceConsistentCasingInFileNames": true 6 + } 7 + }