forked from sveltejs/sapper
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 2.65 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
96
97
98
99
100
{
"name": "sapper",
"version": "0.28.5",
"description": "The next small thing in web development, powered by Svelte",
"bin": {
"sapper": "./sapper"
},
"files": [
"*.js",
"webpack",
"config",
"sapper",
"dist/*.js",
"runtime/*.mjs",
"runtime/index.d.ts",
"runtime/internal"
],
"directories": {
"test": "test"
},
"dependencies": {
"html-minifier": "^4.0.0",
"http-link-header": "^1.0.2",
"rollup-dependency-tree": "0.0.11",
"shimport": "^1.0.1",
"source-map": "^0.6.1",
"sourcemap-codec": "^1.4.6",
"string-hash": "^1.1.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.0.1",
"@rollup/plugin-replace": "^2.3.3",
"@sveltejs/eslint-config": "github:sveltejs/eslint-config#v5.0.0",
"@types/mocha": "^8.0.0",
"@types/node": "^10.0.0",
"@types/puppeteer": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"cheap-watch": "^1.0.2",
"cookie": "^0.4.1",
"cross-env": "^7.0.2",
"devalue": "^2.0.0",
"eslint": "^7.1.0",
"eslint-import-resolver-typescript": "^2.2.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-svelte3": "^2.7.3",
"kleur": "^4.0.0",
"mime": "^2.4.4",
"mocha": "^8.0.0",
"node-fetch": "^2.6.0",
"npm-run-all": "^4.1.5",
"polka": "^0.5.2",
"port-authority": "^1.0.5",
"pretty-bytes": "^5.3.0",
"puppeteer": "^5.0.0",
"require-relative": "^0.8.7",
"rollup": "^2.21.0",
"rollup-plugin-svelte": "^5.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"sade": "^1.6.1",
"sirv": "^1.0.0",
"svelte": "^3.24.0",
"svelte-loader": "^2.13.6",
"ts-node": "^8.10.2",
"tslib": "^2.0.0",
"typescript": "^3.9.7",
"webpack": "^4.38.0",
"webpack-format-messages": "^2.0.5",
"webpack-modules": "^1.0.0"
},
"peerDependencies": {
"svelte": "^3.17.3"
},
"scripts": {
"test": "mocha --config=.mocharc.yml",
"pretest": "npm run check",
"build": "rm -rf dist && rollup -c",
"check": "rm -rf dist && cross-env TS_CHECK_ENABLED=true rollup -c",
"lint": "eslint \"{src,runtime}/**/*.{ts,js}\"",
"prepare": "npm run build",
"dev": "rollup -cw",
"prepublishOnly": "npm test"
},
"repository": "https://github.com/sveltejs/sapper",
"keywords": [
"svelte",
"isomorphic",
"universal",
"template",
"express"
],
"author": "Rich Harris",
"license": "MIT",
"bugs": {
"url": "https://github.com/sveltejs/sapper/issues"
},
"homepage": "https://github.com/sveltejs/sapper#readme"
}