This repository was archived by the owner on Nov 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.32 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.32 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
{
"name": "open-call",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"start": "sirv public",
"prettify": "prettier --write --plugin-search-dir=. src/**/*.svelte src/**/*.js",
"lint:fix": "eslint --fix src/**/*.svelte src/**/*.js"
},
"devDependencies": {
"@fortawesome/free-brands-svg-icons": "^5.13.0",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@rollup/plugin-commonjs": "^11.0.0",
"@rollup/plugin-image": "^2.0.4",
"@rollup/plugin-node-resolve": "^7.0.0",
"@rollup/plugin-replace": "^2.3.1",
"aos": "^3.0.0-beta.6",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-svelte3": "^2.7.3",
"fa-svelte": "^3.1.0",
"husky": "^4.2.3",
"normalize.css": "^8.0.1",
"prettier": "^2.0.2",
"prettier-plugin-svelte": "^0.7.0",
"rollup": "^1.20.0",
"rollup-plugin-css-only": "^2.0.0",
"rollup-plugin-livereload": "^1.0.0",
"rollup-plugin-svelte": "^5.0.3",
"rollup-plugin-svg-import": "^1.4.0",
"rollup-plugin-terser": "^5.1.2",
"smoothscroll-polyfill": "^0.4.4",
"svelte": "^3.0.0"
},
"dependencies": {
"sirv-cli": "^0.4.4"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint:fix"
}
}
}