-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
37 lines (37 loc) · 1.12 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
{
"name": "bellshade.github.io",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"deploy": "cross-env BASE=forked npm run build && gh-pages -d dist",
"deploy:maintainer": "npm run build && gh-pages -d dist -r git@github.com:bellshade/bellshade.github.io.git",
"lint:css": "stylelint --ignore-path .gitignore 'src/**/*.css'",
"lint:js": "eslint --ignore-path .eslintignore '**/*.js'",
"lint": "npm run lint:css && npm run lint:js",
"prepare": "husky install"
},
"dependencies": {
"jquery": "^3.6.0",
"slick-carousel": "^1.8.1",
"smooth-scrollbar": "^8.6.3"
},
"devDependencies": {
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"autoprefixer": "^10.3.4",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"gh-pages": "^3.2.3",
"husky": "^7.0.0",
"js-tokens": "^7.0.0",
"lint-staged": "^11.1.2",
"postcss": "^8.3.11",
"prettier": "^2.4.1",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"tailwindcss": "^2.2.15",
"vite": "^2.5.4"
}
}