-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
executable file
·54 lines (54 loc) · 1.78 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
{
"name": "solid-chrome-extension-template",
"displayName": "Solid Chrome Extension Template",
"version": "0.202212.1",
"description": "Chrome Extension boilerplate with SolidJS + Vite + ManifestV3",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fuyutarow/solid-chrome-extension-template.git"
},
"scripts": {
"dev": "vite build -w",
"build": "vite build",
"lint": "eslint . --fix -c .eslintrc --ext js,ts --ignore-pattern='!.*'",
"dev:nodemon": "nodemon",
"build:noemit": "tsc --noEmit && vite build",
"test": "jest"
},
"type": "module",
"dependencies": {
"solid-js": "^1.6.2"
},
"devDependencies": {
"@crxjs/vite-plugin": "2.0.0-beta.7",
"@types/chrome": "0.0.203",
"@types/jest": "^29.2.3",
"@types/node": "18.11.10",
"@typescript-eslint/eslint-plugin": "5.45.0",
"@typescript-eslint/parser": "5.45.0",
"autoprefixer": "^10.4.13",
"babel-preset-solid": "^1.6.2",
"eslint": "8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-solid": "^0.9.1",
"eslint-plugin-tailwindcss": "^3.7.1",
"fs-extra": "11.1.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"nodemon": "2.0.20",
"postcss": "^8.4.19",
"prettier": "2.8.0",
"sass": "1.56.1",
"ts-jest": "^29.0.3",
"ts-loader": "9.4.2",
"ts-node": "10.9.1",
"typescript": "4.9.3",
"vite": "3.2.4",
"vite-plugin-solid": "^2.4.0",
"vite-plugin-windicss": "^1.8.8"
}
}