-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.69 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
{
"name": "nordic-goose",
"displayName": "Nordic goose",
"description": "Browser startpage with nord colors and a dancing goose.",
"private": true,
"version": "0.3.1",
"scripts": {
"dev": "tsc && vite dev",
"build": "tsc && vite build",
"start": "npm run build -- --watch --minify false",
"ext:lint": "web-ext lint -s dist",
"ext:build": "npm run build && web-ext build -s dist",
"ext:sign": "npm run build && node scripts/sign.js",
"lint": "eslint ./src ./scripts --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"@nogo/ext": "*",
"@vanilla-extract/css": "^1.9.0",
"@vanilla-extract/css-utils": "^0.1.2",
"@vanilla-extract/recipes": "^0.2.5",
"@vanilla-extract/sprinkles": "^1.5.0",
"solid-js": "^1.5.4",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@types/webextension-polyfill": "^0.9.0",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"@vanilla-extract/vite-plugin": "^3.4.0",
"babel-preset-solid": "^1.5.4",
"dotenv": "^16.0.2",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-solid": "^0.7.1",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.7.1",
"typescript": "^4.8.3",
"vite": "^3.1.0",
"vite-plugin-solid": "^2.3.0",
"vite-plugin-web-extension": "^3.0.6"
},
"overrides": {
"@vanilla-extract/vite-plugin": {
"vite": "^3"
}
}
}