-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.55 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
{
"name": "project-website",
"version": "1.0.0",
"description": "The new IEEE UTD website",
"repository": "[email protected]:ieee-utd/project-website.git",
"author": "IEEE UTD Forge<[email protected]>",
"scripts": {
"deploy": "yarn build && surge public",
"build": "rollup -c && cp public/index.html public/404.html",
"dev": "rollup -c -w",
"start": "sirv public -s",
"validate": "svelte-check",
"precommit": "lint-staged"
},
"lint-staged": {
"src/**/*.+(ts|js)": [
"eslint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn precommit"
}
},
"dependencies": {
"@mdi/font": "^5.9.55",
"@mdi/js": "^5.9.55",
"font-awesome": "^4.7.0",
"sirv-cli": "^1.0.0",
"svelte-router-spa": "^5.8.3"
},
"devDependencies": {
"@beyonk/svelte-carousel": "^2.8.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"@rollup/plugin-typescript": "^6.0.0",
"@tsconfig/svelte": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.9.0",
"lint-staged": "^10.4.0",
"rollup": "^2.3.4",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^6.0.0",
"rollup-plugin-terser": "^7.0.0",
"surge": "^0.21.7",
"svelte": "^3.0.0",
"svelte-check": "^1.0.0",
"svelte-feather-icons": "^3.3.0",
"svelte-preprocess": "^4.0.0",
"svelte-scrollto": "^0.2.0",
"tslib": "^2.0.0",
"typescript": "^3.9.3",
"yarn": "^1.22.10"
}
}