-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.81 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
{
"name": "TODO",
"description": "TODO",
"version": "0.0.1",
"scripts": {
"dev": "run-p watch:*",
"watch:css": "postcss static/global.pcss -o static/global.css -w",
"watch:dev": "sapper dev",
"build": "run-s build:css build:sapper",
"build:css": "NODE_ENV=production postcss static/global.pcss -o static/global.css",
"build:sapper": "sapper build --legacy",
"build:export": "sapper export --legacy",
"export": "run-s build:css build:export",
"start": "node __sapper__/build",
"serve": "serve ___sapper__/export",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test": "run-p --race dev cy:run",
"deploy": "firebase deploy"
},
"dependencies": {
"@fullhuman/postcss-purgecss": "^2.3.0",
"compression": "^1.7.1",
"polka": "next",
"sirv": "^1.0.6"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/runtime": "^7.11.2",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.2.0",
"@tailwindcss/typography": "^0.2.0",
"autoprefixer": "^9.8.6",
"cssnano": "^4.1.10",
"firebase": "^7.19.1",
"firebase-admin": "^9.1.1",
"firebase-functions": "^3.11.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.1",
"postcss-import": "^12.0.1",
"postcss-load-config": "^2.1.0",
"postcss-preset-env": "^6.7.0",
"rollup": "^2.26.7",
"rollup-plugin-svelte": "^6.0.0",
"rollup-plugin-terser": "^7.0.1",
"rxfire": "^3.13.5",
"rxjs": "^6.6.2",
"sapper": "^0.28.2",
"svelte": "^3.24.1",
"svelte-preprocess": "^4.2.1",
"tailwindcss": "^1.7.5"
}
}