-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
54 lines (54 loc) · 1.58 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": "reactiveconf-sapper-workshop",
"description": "Project for Sapper & Svelte workshop at ReactiveConf 2019",
"private": true,
"version": "0.0.2",
"contributors": [
"Adam Sobotka <[email protected]>",
"Peter Popluhar <[email protected]>",
"Jan Vlnas <[email protected]>"
],
"license": "MIT",
"engines": {
"node": "16.x",
"npm": "^7"
},
"scripts": {
"dev": "sapper dev",
"build": "ls && sapper build",
"export": "sapper export --legacy",
"start": "node __sapper__/build",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test": "run-p --race dev cy:run",
"prettier": "prettier --write --ignore-path .gitignore '**/*.{svelte,js,html,css}'"
},
"dependencies": {
"compression": "^1.7.1",
"polka": "next",
"sirv": "^0.4.0"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.7",
"@babel/runtime": "^7.7.7",
"@now/node": "^1.3.0",
"@polka/send": "^0.4.0",
"node-fetch": "^2.6.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"prettier-plugin-svelte": "^0.7.0",
"rollup": "^1.27.14",
"rollup-plugin-babel": "^4.0.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-svelte": "^5.1.1",
"rollup-plugin-terser": "^5.1.3",
"sapper": "^0.27.11",
"svelte": "^3.16.6"
}
}