This repository has been archived by the owner on Jan 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.24 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
{
"name": "frontend",
"private": true,
"version": "0.0.1",
"scripts": {
"dev": "sapper dev",
"build": "sapper build --legacy",
"export": "sapper export --legacy",
"format:prettier": "npx prettier --write --plugin-search-dir=. src/**/*.ts src/**/*.svelte",
"format:prettier:check": "npx prettier --check --plugin-search-dir=. src/**/*.ts src/**/*.svelte",
"format:eslint": "npm run lint:fix",
"format": "npm run format:prettier && npm run format:eslint",
"hash": "node -r ts-node/register tools/hashCss.ts",
"lint": "eslint src --ext=js,jsx,ts,svelte",
"lint:fix": "eslint src --ext=js,jsx,ts,svelte --fix",
"start": "node __sapper__/build",
"test": "npm run build && npm run test:integration",
"test:integration": "mocha -r ts-node/register test/**/*.spec.ts",
"validate": "svelte-check --ignore src/node_modules/@sapper"
},
"dependencies": {
"@awaitjs/express": "^0.7.2",
"axios": "^0.21.1",
"compression": "^1.7.4",
"debounce-promise": "^3.1.2",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"express-http-proxy": "^1.6.2",
"idb": "^6.0.0",
"lodash": "^4.17.21",
"pg": "^8.6.0",
"roarr": "^2.15.4",
"serialize-error": "^7.0.1",
"sirv": "^1.0.11",
"svelte-persistent-store": "^0.1.6",
"xstate": "^4.19.0"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.14.0",
"@babel/runtime": "^7.14.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-typescript": "^6.1.0",
"@tsconfig/svelte": "^1.0.10",
"@types/chai": "^4.2.17",
"@types/compression": "^1.7.0",
"@types/debounce": "^1.2.0",
"@types/debounce-promise": "^3.1.3",
"@types/dom-mediacapture-record": "^1.0.7",
"@types/dotenv-safe": "^8.1.1",
"@types/express": "^4.17.11",
"@types/express-http-proxy": "^1.6.1",
"@types/lodash": "^4.14.168",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.43",
"@types/parse5-html-rewriting-stream": "^5.1.2",
"@types/pg": "^7.14.11",
"@types/puppeteer": "^5.4.3",
"@types/roarr": "^2.14.2",
"@types/yargs": "^15.0.13",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"chai": "^4.3.4",
"eslint": "^7.25.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-svelte3": "^3.2.0",
"fast-glob": "^3.2.5",
"mocha": "^8.3.2",
"parse5-html-rewriting-stream": "^6.0.1",
"pptr-testing-library": "^0.6.4",
"prettier": "^2.2.1",
"prettier-plugin-svelte": "^1.4.2",
"puppeteer": "^5.5.0",
"rollup": "^2.46.0",
"rollup-plugin-prettier": "^2.1.0",
"rollup-plugin-svelte": "^6.1.1",
"rollup-plugin-terser": "^7.0.2",
"sapper": "^0.28.10",
"svelte": "^3.38.2",
"svelte-check": "^1.5.2",
"svelte-preprocess": "^4.7.3",
"ts-node": "^9.1.1",
"tslib": "^2.2.0",
"typescript": "^4.2.4",
"yargs": "^16.2.0"
}
}