-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.71 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
{
"private": true,
"scripts": {
"dev": "sapper dev",
"build": "sapper build --legacy",
"export": "sapper export --legacy",
"start": "node __sapper__/build",
"post-export": "rimraf __sapper__/export/images/**/*.webp",
"optimize-images": "node scripts/optimize-images",
"prod": "run-s export post-export optimize-images",
"lint": "eslint . --ext .js,.svelte",
"lint:fix": "eslint . --ext .js,.svelte --fix"
},
"dependencies": {
"compression": "^1.7.4",
"email-validator": "^2.0.4",
"imagemin": "^7.0.1",
"imagemin-webp": "^6.0.0",
"polka": "next",
"remarkable": "^2.0.1",
"sirv": "^1.0.6",
"smoothscroll-polyfill": "^0.4.4"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/runtime": "^7.11.2",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-yaml": "^2.1.1",
"autoprefixer": "^9.8.6",
"cssnano": "^4.1.10",
"eslint": "^7.8.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-svelte3": "^2.7.3",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.26.11",
"rollup-plugin-svelte": "^6.0.1",
"rollup-plugin-terser": "^7.0.2",
"sapper": "^0.28.6",
"svelte": "^3.24.1",
"svelte-image": "^0.2.7",
"svelte-preprocess": "^4.2.1"
}
}