-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.43 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
{
"name": "sapper-typescript-esbuild",
"description": "sapper-typescript-esbuild",
"version": "0.0.1",
"author": "Tom Bazarnik <tommywalkie@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "run-p watch-ts sapper:dev watch-svelte",
"build": "npm run type-check && sapper build",
"export": "npm run type-check && sapper export",
"start": "node __sapper__/build",
"sapper:dev": "sapper dev --port 3000",
"watch-ts": "chokidar \"src/**/*.ts\" --silent -c \"tsc --noEmit -p ./tsconfig.json\"",
"watch-svelte": "svelte-check --ignore src/node_modules --output human --watch",
"type-check": "tsc --noEmit -p ./tsconfig.json && svelte-check --ignore src/node_modules --output human"
},
"dependencies": {
"compression": "^1.7.1",
"cross-fetch": "^3.0.6",
"polka": "^0.5.0",
"sirv": "^1.0.6"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.0.1",
"@rollup/plugin-replace": "^2.3.3",
"@tsconfig/svelte": "^1.0.10",
"@types/compression": "^1.7.0",
"@types/polka": "^0.5.1",
"chokidar-cli": "^2.1.0",
"dotenv": "^8.2.0",
"esbuild": "^0.6.33",
"npm-run-all": "^4.1.5",
"rollup": "^2.13.1",
"rollup-plugin-esbuild": "^2.4.2",
"rollup-plugin-svelte": "^6.0.0",
"sapper": "^0.28.6",
"svelte": "^3.24.1",
"svelte-check": "^1.0.41",
"svelte-preprocess": "^4.2.1",
"typescript": "^3.9.7"
}
}