This repository was archived by the owner on Feb 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.67 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.67 KB
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
{
"name": "svelte-app",
"version": "1.0.0",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"start": "sirv public",
"format": "prettier --write ./**/*.{js,svelte,md,html,css,json}",
"prelint": "npm run format",
"lint": "eslint './**/*.{js,svelte}'",
"lint:fix": "eslint --fix './**/*.{js,svelte}'",
"pretest": "npm run lint",
"deploy_dev": "npx firebase deploy --only hosting:staging",
"deploy_prod": "npx firebase deploy --only hosting:production"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"@rollup/plugin-replace": "^2.3.4",
"babel-eslint": "^10.1.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-svelte3": "^2.7.3",
"firebase-tools": "^8.16.2",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"prettier-plugin-svelte": "^1.4.0",
"rollup": "^2.3.4",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^6.0.0",
"rollup-plugin-svelte-svg": "^0.2.3",
"rollup-plugin-terser": "^7.0.0",
"svelte": "^3.0.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.1",
"sirv-cli": "^1.0.0",
"svelte-fa": "^2.1.1",
"svelte-icons": "^2.1.0",
"svelte-loading-spinners": "^0.1.1",
"svelte-notifications": "^0.9.9",
"svelte-spa-router": "^3.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,svelte,md,html,css,json,yml}": "prettier --write",
"*.{js,svelte}": "eslint --cache --fix",
"*.js": "eslint --cache --fix"
}
}