-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.79 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
56
57
58
59
60
61
62
63
{
"name": "blog.lampeweb.de",
"description": "Web Development Blog",
"version": "0.0.1",
"scripts": {
"dev": "sapper dev",
"build": "sapper build --legacy",
"export": "sapper export --legacy",
"start": "node __sapper__/build",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test": "run-p --race dev cy:run",
"deploy": "netlify deploy --dir=__sapper__/export/ --prod"
},
"config": {
"deployToGit": {
"repository": "[email protected]:lampewebdev/build-blog.git",
"branch": "artifacts",
"folder": "__sapper__/export",
"script": "npm run export",
"commit": "publishing new version",
"user": {
"email": "[email protected]",
"name": "Michael Lazarski"
}
}
},
"dependencies": {
"bulma": "^0.7.5",
"compression": "^1.7.4",
"polka": "next",
"postcss-import": "^12.0.1",
"postcss-url": "^8.0.0",
"showdown": "^1.9.0",
"showdown-highlight": "^2.1.3",
"sirv": "^0.4.2",
"sqlite-async": "^1.0.12",
"svelma": "0.0.12",
"svelte-preprocess": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/runtime": "^7.5.5",
"autoprefixer": "^9.6.1",
"deploy-to-git": "^0.1.5",
"eslint": "^6.3.0",
"eslint-plugin-svelte3": "^2.7.3",
"npm-run-all": "^4.1.5",
"rollup": "^1.20.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-svelte": "^5.1.0",
"rollup-plugin-terser": "^5.1.1",
"sapper": "^0.27.8",
"svelte": "^3.9.2"
}
}