-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 890 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 890 Bytes
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
{
"name": "mozmoderator",
"version": "0.1.0",
"description": "Mozilla Moderator App",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/mozilla/mozmoderator.git"
},
"author": "Mozilla",
"license": "AGPL-3.0",
"type": "module",
"scripts": {
"build": "vite build",
"watch": "vite build --watch",
"lint:js": "eslint frontend/src/js",
"lint:css": "stylelint \"frontend/src/scss/**/*.scss\""
},
"dependencies": {
"@fontsource-variable/inter": "^5.1.1",
"@fontsource/zilla-slab": "^5.1.0",
"bootstrap": "5.3.3",
"bootstrap-icons": "^1.11.3",
"tom-select": "^2.4.3"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"sass": "^1.80.0",
"stylelint": "^16.10.0",
"stylelint-config-standard-scss": "^13.1.0",
"vite": "^5.4.10"
}
}