-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.28 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "kookbook",
"description": "Recipe manager app",
"repository": "https://github.com/TheSimpleZ/cookbook",
"license": "MIT",
"version": "0.0.1",
"engines": {
"node": "12.x"
},
"scripts": {
"dev": "run-p start:dev watch:css",
"build": "npm run build:css && sapper build",
"watch:css": "postcss static/global.css -o static/index.css -w",
"build:css": "NODE_ENV=production postcss static/global.css -o static/index.css",
"export": "sapper export",
"start": "node __sapper__/build",
"start:dev": "sapper dev",
"lint": "eslint ./src/**/*.{js,svelte}",
"lint:fix": "eslint --fix ./src/**/*.{js,svelte}"
},
"dependencies": {
"@mdi/js": "^5.8.55",
"compression": "^1.7.1",
"cookie-parser": "^1.4.5",
"firebase-admin": "^9.4.1",
"polka": "next",
"sirv": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/runtime": "^7.0.0",
"@editorjs/editorjs": "^2.19.1",
"@editorjs/header": "^2.6.1",
"@editorjs/image": "^2.6.0",
"@editorjs/link": "^2.3.1",
"@editorjs/list": "^1.6.1",
"@editorjs/marker": "^1.2.2",
"@editorjs/table": "^1.3.0",
"@editorjs/underline": "^1.0.0",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-replace": "^2.2.0",
"@rollup/plugin-url": "^5.0.0",
"autoprefixer": "^10.1.0",
"dotenv": "^8.2.0",
"eslint": "^7.15.0",
"eslint-plugin-svelte3": "^2.7.3",
"firebase": "^8.1.2",
"firebaseui": "^4.7.1",
"git-hooks": "^1.1.10",
"js-cookie": "^2.2.1",
"lodash.throttle": "^4.1.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.1",
"postcss-cli": "^8.3.1",
"postcss-import": "^13.0.0",
"postcss-load-config": "^3.0.0",
"postcss-nested": "^5.0.3",
"rollup": "^2.3.4",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-svelte": "^6.1.1",
"rollup-plugin-terser": "^7.0.0",
"sapper": "^0.28.10",
"sass": "^1.30.0",
"simplebar": "^5.3.0",
"svelte": "^3.31.0",
"svelte-materialify": "^0.3.4",
"svelte-preprocess": "^4.6.1",
"tailwindcss": "^2.0.2"
}
}