-
Notifications
You must be signed in to change notification settings - Fork 372
/
package.json
77 lines (76 loc) · 2.23 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "hacktoberfest",
"version": "0.0.1",
"private": true,
"scripts": {
"lint": "eslint src/** --fix",
"stylelint": "stylelint --fix",
"lint:modified": "eslint $(git diff --name-only --diff-filter=ACMRTUXB main | grep -E \"(.js$|.ts$|.tsx$)\") --fix",
"commit": "cz",
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"typecheck": "astro check && tsc --noEmit",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write src/**",
"prepare": "husky install",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@astrojs/image": "0.9.1",
"@astrojs/preact": "1.1.1",
"@astrojs/react": "1.1.4",
"@astrojs/solid-js": "1.1.0",
"@astrojs/svelte": "1.0.1",
"@astrojs/tailwind": "2.0.2",
"@astrojs/vue": "1.1.0",
"astro": "1.3.1",
"preact": "10.6.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"solid-js": "1.4.3",
"svelte": "3.50.1",
"tailwindcss": "3.1.8",
"tslib": "2.4.0",
"vue": "3.2.40"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@babel/preset-env": "^7.19.3",
"@tailwindcss/typography": "0.5.7",
"@types/jest": "^29.1.1",
"@types/react": "18.0.21",
"@typescript-eslint/eslint-plugin": "5.38.1",
"@typescript-eslint/parser": "5.38.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.24.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-astro": "0.19.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "15.3.0",
"eslint-plugin-promise": "6.0.1",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"prettier": "2.7.1",
"prettier-plugin-astro": "0.5.5",
"stylelint": "^14.13.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^28.0.0",
"ts-jest": "^29.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{astro,cjs,js,jsx,mjs,ts,tsx}": "eslint --cache --fix",
"*.css": "stylelint --cache --fix",
"*": "prettier --cache --ignore-unknown --write"
}
}