forked from sveltejs/v2.svelte.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.32 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
{
"name": "svelte.technology",
"version": "1.0.0",
"description": "Docs and examples for Svelte",
"scripts": {
"dev": "sapper dev",
"start": "node build",
"sapper": "sapper build",
"update_template": "sh ./scripts/update_template.sh",
"stage": "now",
"deploy": "npm run stage && now alias",
"predeploy": "git-branch-is master && git diff --exit-code && npm run sapper",
"deploy:ci": "now --token $NOW_TOKEN && now alias --token $NOW_TOKEN",
"prestage": "npm run update_template && npm run sapper",
"predeploy:ci": "npm run prestage",
"lint": "eslint app routes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sveltejs/svelte.technology.git"
},
"keywords": [
"svelte"
],
"author": "Rich Harris",
"license": "MIT",
"bugs": {
"url": "https://github.com/sveltejs/svelte.technology/issues"
},
"homepage": "https://github.com/sveltejs/svelte.technology#readme",
"devDependencies": {
"chalk": "^2.0.1",
"clean-css": "^4.0.12",
"css-loader": "^0.28.11",
"degit": "^2.1.3",
"eslint": "^4.19.1",
"eslint-plugin-html": "^4.0.2",
"eslint-plugin-import": "^2.2.0",
"git-branch-is": "^0.1.0",
"glob": "^7.1.2",
"html-entities": "^1.2.1",
"now": "^11.1.7",
"sapper": "^0.12.0",
"style-loader": "^0.21.0",
"svelte": "^2.6.0",
"svelte-loader": "^2.5.1",
"webpack": "^4.8.3",
"workerize-loader": "^1.0.2"
},
"dependencies": {
"codemirror": "^5.36.0",
"compression": "^1.6.2",
"devalue": "^1.0.1",
"do-not-zip": "^0.1.1",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-session": "^1.15.6",
"golden-fleece": "^1.0.8",
"highlight.js": "^9.12.0",
"locate-character": "^2.0.5",
"marked": "^0.3.18",
"node-fetch": "^2.1.2",
"passport": "^0.4.0",
"passport-github": "^1.1.0",
"rollup": "^0.58.2",
"serve-static": "^1.13.1",
"session-file-store": "^1.2.0",
"sourcemap-codec": "^1.4.1",
"svelte-extras": "^2.0.0"
},
"now": {
"env": {
"NODE_ENV": "production",
"BASEURL": "https://svelte.technology",
"GITHUB_CLIENT_ID": "@svelte-gist-client-id",
"GITHUB_CLIENT_SECRET": "@svelte-gist-client-secret"
},
"alias": "svelte.technology",
"files": [
"build",
"assets",
"content"
]
}
}