-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.75 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
{
"name": "myfoodcoop",
"description": "Frontend for MyFoodCoop",
"version": "1.0.0",
"scripts": {
"dev": "sapper dev",
"build": "sapper build --legacy",
"export": "sapper export --legacy",
"start": "node __sapper__/build",
"lint": "eslint ./src",
"lighthouse": "lighthouse-ci",
"format": "prettier --write .",
"format-check": "prettier --check .",
"check": "npm run lint && npm run format-check"
},
"pre-commit": [
"lint",
"format-check"
],
"dependencies": {
"@mdi/js": "^5.9.55",
"bulma": "^0.9.2",
"compression": "^1.7.4",
"export-to-csv": "^0.2.1",
"express": "^4.17.1",
"js-cookie": "^2.2.1",
"jwt-decode": "^3.1.2",
"luxon": "^1.26.0",
"sass": "^1.32.8",
"sirv": "^1.0.11",
"svelte-portal": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.13.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.13.7",
"@babel/preset-env": "^7.13.5",
"@babel/runtime": "^7.13.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-replace": "^2.4.1",
"@rollup/plugin-url": "^6.0.0",
"@types/luxon": "^1.26.0",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-svelte3": "^3.1.1",
"node-sass": "^5.0.0",
"postcss": "^8.2.6",
"pre-commit": "^1.2.2",
"prettier": "^2.2.1",
"prettier-plugin-svelte": "^2.1.6",
"rollup": "^2.39.1",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"sapper": "^0.28.0",
"svelte": "^3.17.3",
"svelte-preprocess": "^4.6.9"
}
}