-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.47 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
{
"name": "genos-website",
"description": "genos-website",
"version": "0.0.1",
"scripts": {
"target-setup": "firebase target:apply hosting website genos-glyco",
"dev": "sapper dev",
"watch:scss": "node-sass styles.scss static/global.css -w",
"build": "sapper build --legacy && cp -r ./__sapper__/ ./functions/__sapper__",
"prebuild": "rm -rf functions/__sapper__/build && node-sass styles.scss static/global.css --output-style=compressed",
"export": "sapper export --legacy",
"start": "npm run build && firebase serve",
"deploy": "firebase deploy --only hosting,functions:ssr",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test": "run-p --race dev cy:run"
},
"dependencies": {
"body-parser": "1.19.0",
"compression": "1.7.1",
"firebase": "6.1.1",
"firebase-admin": "8.0.0",
"nodemailer": "6.2.1",
"polka": "0.5.0",
"sirv": "0.4.0"
},
"devDependencies": {
"@babel/core": "7.0.0",
"@babel/plugin-syntax-dynamic-import": "7.0.0",
"@babel/plugin-transform-runtime": "7.0.0",
"@babel/preset-env": "7.0.0",
"@babel/runtime": "7.0.0",
"node-sass": "4.12.0",
"npm-run-all": "4.1.5",
"rollup": "1.0.0",
"rollup-plugin-babel": "4.0.2",
"rollup-plugin-commonjs": "9.1.6",
"rollup-plugin-node-resolve": "4.0.0",
"rollup-plugin-replace": "2.0.0",
"rollup-plugin-svelte": "5.1.0",
"rollup-plugin-terser": "4.0.4",
"sapper": "0.27.0",
"svelte": "3.0.0"
}
}