-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.97 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": "vianch-site-2021",
"version": "0.2.3",
"description": "vianch personal site",
"main": "index.js",
"repository": "[email protected]:vianch/vianch-site-2021.git",
"author": "Victor <[email protected]>",
"license": "MIT",
"scripts": {
"build": "APP_ENV=production gatsby build",
"changelog": "conventional-changelog -p gatsby -i CHANGELOG.md -s && git add CHANGELOG.md",
"dev": "APP_ENV=development gatsby develop -H 0.0.0.0 -p 3000",
"start": "APP_ENV=production gatsby serve -H 0.0.0.0 -p 8080",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"clean:gatsby": "gatsby clean",
"clean": "gatsby clean && rm -rf package-lock.json && rm -rf yarn.lock && rm -rf yarn-error.log && rm -rf node_modules && rm -rf .next && rm -rf _static && yarn install",
"pub:patch": "npm --no-git-tag-version version patch",
"pub:minor": "npm --no-git-tag-version version minor",
"pub:major": "npm --no-git-tag-version version major"
},
"dependencies": {
"gatsby": "^3.4.2",
"gatsby-plugin-google-gtag": "^3.2.0",
"gatsby-plugin-google-tagmanager": "^3.2.0",
"react": "^17.0.2",
"react-anchor-link-smooth-scroll": "^1.0.12",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"gatsby-plugin-react-helmet": "^4.2.0",
"gatsby-plugin-sass": "^4.2.0",
"gatsby-plugin-typescript": "^3.2.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"sass": "^1.32.8",
"stylelint": "^13.12.0",
"stylelint-config-recommended": "^4.0.0",
"stylelint-scss": "^3.19.0",
"typescript": "^4.2.4"
}
}