forked from sveltejs/hn.svelte.technology
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.45 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
{
"name": "sapper-hacker-news",
"description": "Hacker News built with Svelte and Sapper",
"version": "0.0.1",
"author": "Rich Harris",
"scripts": {
"dev": "sapper dev",
"sapper": "sapper build --legacy",
"export": "sapper export",
"start": "node __sapper__/build",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test": "run-p --race dev cy:run",
"stage": "now",
"deploy": "npm run stage && now alias",
"predeploy": "git-branch-is master && git diff --exit-code",
"prestage": "npm run sapper"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"compression": "^1.7.3",
"express": "^4.16.3",
"node-fetch": "^2.2.0",
"serve-static": "^1.13.2"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"git-branch-is": "^2.0.0",
"now": "^11.4.1",
"npm-run-all": "^4.1.3",
"rollup": "^0.65.2",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-svelte": "^4.3.0",
"rollup-plugin-terser": "^2.0.2",
"sapper": "^0.22.2",
"svelte": "^2.13.4"
},
"now": {
"alias": "hn.svelte.technology",
"files": [
"static",
"__sapper__/build"
],
"env": {
"NODE_ENV": "production"
}
}
}