This repository has been archived by the owner on Jan 11, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 433
/
package.json
104 lines (104 loc) · 2.83 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
101
102
103
104
{
"name": "sapper",
"version": "0.29.3",
"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",
"shimport": "^2.0.5",
"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": "git+https://github.com/sveltejs/eslint-config#v5.4.0",
"@types/cookie": "^0.4.0",
"@types/mocha": "^8.0.0",
"@types/node": "^10.0.0",
"@types/node-fetch": "^2.5.7",
"@types/puppeteer": "^5.4.4",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"cheap-watch": "^1.0.4",
"cookie": "^0.4.1",
"cross-env": "^7.0.2",
"devalue": "^2.0.0",
"eslint": "^7.10.0",
"eslint-import-resolver-typescript": "^2.2.0",
"eslint-plugin-import": "^2.22.1",
"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": "^10.4.0",
"require-relative": "^0.8.7",
"rimraf": "^3.0.2",
"rollup": "^2.29.0",
"rollup-dependency-tree": "0.0.14",
"rollup-plugin-css-chunks": "^2.0.3",
"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": "^4.0.3",
"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": "rimraf dist && rollup -c",
"check": "rimraf dist && cross-env TS_CHECK_ENABLED=true rollup -c",
"lint": "eslint '{src,runtime,test}/**/*.{ts,js,svelte}' && cd site && npm run lint",
"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"
}