forked from johnlindquist/sapper-netlify-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.01 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
{
"name": "TODO",
"description": "TODO",
"version": "0.0.1",
"scripts": {
"dev": "cross-env NODE_ENV=dev npm-run-all --parallel dev:app dev:server",
"dev:app": "sapper dev",
"dev:server": "netlify-lambda serve functions",
"build": "sapper build",
"export": "sapper export",
"start": "node __sapper__/build",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test": "run-p --race dev cy:run",
"netlify:build": "run-p netlify:build:**",
"netlify:build:app": "sapper export",
"netlify:build:lambda": "netlify-lambda build functions",
"postinstall": "netlify-lambda install"
},
"dependencies": {
"compression": "^1.7.1",
"cross-env": "^7.0.2",
"http-proxy-middleware": "^1.0.4",
"netlify-lambda": "^1.6.3",
"polka": "next",
"project-name-generator": "^2.1.7",
"sirv": "^0.4.0"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"sapper": "^0.27.0",
"svelte": "^3.0.0",
"svelte-loader": "^2.9.0",
"webpack": "^4.7.0"
}
}