-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.64 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
{
"name": "scheduleyoursocial",
"version": "0.0.1",
"scripts": {
"build": "svelte-kit build",
"createFixtures": "./habitat.sh node ./db/createSocial.js",
"dev": "./habitat.sh svelte-kit dev -p 6602",
"db": "docker run --rm --name faunadb -p 8443:8443 -v scheduleyoursocial:/var/lib/faunadb fauna/faunadb",
"db:init": "./habitat.sh fauna eval --file db/init.fql --secret $FAUNADB_SERVER_SECRET --port $FAUNADB_PORT --scheme $FAUNADB_SCHEME --domain $FAUNADB_DOMAIN",
"getAllSocials": "./habitat.sh node ./db/getAllSocials.js",
"deleteAllSocials": "./habitat.sh node ./db/deleteAllSocials.js",
"package": "svelte-kit package",
"postinstall": "patch-package",
"preview": "svelte-kit preview",
"unit": "ava **/*.spec.js",
"unit:dev": "npm run unit -- --watch",
"test:dev": "cypress open"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^1.0.0-next.40",
"@sveltejs/adapter-netlify": "^1.0.0-next.56",
"@sveltejs/kit": "^1.0.0-next.325",
"ava": "^4.0.0",
"cypress": "^9.3.1",
"fauna-shell": "^0.13.0",
"netlify-cli": "^15.8.1",
"patch-package": "^6.4.7",
"svelte": "^3.44.0"
},
"type": "module",
"dependencies": {
"@fontsource/amatic-sc": "^4.5.0",
"@fontsource/fira-mono": "^4.5.0",
"@fontsource/port-lligat-slab": "^4.5.2",
"@lukeed/uuid": "^2.0.0",
"@sentry/browser": "^6.19.1",
"@sentry/tracing": "^6.19.1",
"@sindresorhus/string-hash": "^2.0.0",
"cookie": "^0.4.1",
"faunadb": "^4.5.2",
"papercss": "^1.9.2",
"plausible-tracker": "^0.3.5",
"praecox-datepicker": "^1.1.7",
"spaper": "^1.1.1",
"web-push": "^3.6.3"
}
}