This repository has been archived by the owner on Apr 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
110 lines (110 loc) · 3.69 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": "sapper-firebase-typescript-graphql-tailwindcss-actions-template",
"description": "A template that includes Sapper for Svelte, Firebase functions and hosting, TypeScript and TypeGraphQL, Tailwind CSS, ESLint and EditorConfig, and automatic building and deployment with GitHub Actions",
"keywords": [
"sapper",
"firebase",
"typegraphql",
"typescript",
"eslint",
"postcss",
"purgecss",
"github-actions",
"svelte",
"cssnano",
"tailwindcss",
"apollo-server",
"graphql"
],
"repository": {
"type": "git",
"url": "https://github.com/babichjacob/sapper-firebase-typescript-graphql-tailwindcss-actions-template.git"
},
"license": "MIT",
"version": "2020.12.12",
"scripts": {
"eslint": "eslint",
"eslint:fix": "eslint --fix ./*.js ./src/*.ts ./src/components/**/*.svelte ./src/graphql/**/*.ts ./src/routes/**/*.svelte ./src/routes/**/*.ts",
"validate": "svelte-check --ignore src/node_modules/@sapper",
"validate:dev": "svelte-check --ignore src/node_modules/@sapper --watch",
"firebase": "firebase",
"firebase:deploy": "firebase deploy",
"firebase:deploy:hosting": "firebase deploy --only hosting",
"firebase:deploy:functions": "firebase deploy --only functions",
"sapper:dev": "sapper dev",
"sapper:build": "cross-env NODE_ENV=production sapper build --legacy",
"sapper:export": "cross-env NODE_ENV=production sapper export --legacy",
"static:rmdir": "rimraf - __sapper__/export",
"static:mkdir": "mkdirp __sapper__/export",
"static:cp": "ncp static __sapper__/export",
"static:404:cp": "ncp __sapper__/export/404/index.html __sapper__/export/404.html",
"static:404:rmdir": "rimraf - __sapper__/export/404",
"dev": "run-p validate:dev sapper:dev",
"prod": "run-s sapper:build static:rmdir static:mkdir static:cp validate",
"start": "node __sapper__/build",
"deploy": "run-s prod firebase:deploy",
"export": "run-s sapper:export static:404:cp static:404:rmdir validate",
"deploy:export": "run-s export firebase:deploy:hosting"
},
"dependencies": {
"compression": "^1.7.4",
"express": "^4.17.1",
"firebase-admin": "^9.4.2",
"firebase-functions": "^3.13.0",
"firebase-tools": "^8.19.0",
"node-fetch": "^2.6.1",
"sirv": "^1.0.10"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@babel/runtime": "^7.12.5",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-replace": "^2.3.4",
"@rollup/plugin-typescript": "^8.0.0",
"@types/compression": "^1.7.0",
"@types/express": "^4.17.9",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"apollo-server-express": "^2.19.0",
"bufferutil": "^4.0.2",
"class-validator": "^0.12.2",
"cross-env": "^7.0.3",
"cssnano": "^4.1.10",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-svelte3": "^2.7.3",
"graphql": "^15.4.0",
"kleur": "^4.1.3",
"mkdirp": "^1.0.4",
"ncp": "^2.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.1",
"postcss-import": "^13.0.0",
"postcss-preset-env": "^6.7.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rollup": "^2.34.2",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.2",
"sapper": "^0.28.10",
"svelte": "^3.31.0",
"svelte-check": "^1.1.22",
"svelte-preprocess": "^4.6.1",
"tailwindcss": "^2.0.2",
"tslib": "^2.0.3",
"type-graphql": "^1.1.1",
"typescript": "^4.1.3",
"utf-8-validate": "^5.0.3"
},
"engines": {
"node": "12"
}
}