-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·41 lines (41 loc) · 1.19 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
{
"name": "alextorres.me",
"version": "3.1.0",
"scripts": {
"dev": "sapper dev",
"build": "sapper build --legacy",
"export": "sapper export --legacy",
"start": "node __sapper__/build",
"start:static": "npm run export && http-serve __sapper__/export",
"test": "run-p --race dev cy:run",
"predeploy": "npm run export",
"deploy": "node deploy.js"
},
"dependencies": {
"polka": "1.0.0-next.11",
"compression": "1.7.4",
"sirv": "0.4.2"
},
"devDependencies": {
"@babel/core": "7.9.6",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.9.6",
"@babel/preset-env": "7.9.6",
"@babel/runtime": "7.9.6",
"@jackfranklin/rollup-plugin-markdown": "0.2.0",
"@rollup/plugin-babel": "5.0.2",
"@rollup/plugin-commonjs": "12.0.0",
"@rollup/plugin-json": "4.0.3",
"@rollup/plugin-node-resolve": "8.0.0",
"@rollup/plugin-replace": "2.3.2",
"gh-pages": "2.2.0",
"http-serve": "1.0.1",
"npm-run-all": "4.1.5",
"rollup": "2.10.7",
"rollup-plugin-glob": "1.0.2",
"rollup-plugin-svelte": "5.2.2",
"rollup-plugin-terser": "5.3.0",
"sapper": "0.27.13",
"svelte": "3.22.3"
}
}