-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
88 lines (88 loc) · 2.61 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
78
79
80
81
82
83
84
85
86
87
88
{
"name": "shinkan-web",
"private": true,
"description": "筑波大学のサークル等の団体情報を紹介するポータルサイトです。",
"version": "0.1.0",
"author": "Student Council of WebPage, University of Tsukuba <[email protected]>",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-brands-svg-icons": "^5.13.0",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"@tsukuba-shinkan/gatsby-source-shinkan-web": "file:plugins/gatsby-source-shinkan-web",
"dotenv": "^8.2.0",
"gatsby": "^2.19.45",
"gatsby-image": "^2.3.1",
"gatsby-plugin-google-analytics": "^2.2.2",
"gatsby-plugin-manifest": "^2.3.3",
"gatsby-plugin-offline": "^3.0.41",
"gatsby-plugin-react-helmet": "^3.1.24",
"gatsby-plugin-remote-images": "^2.1.0",
"gatsby-plugin-sass": "^2.2.1",
"gatsby-plugin-sharp": "^2.5.3",
"gatsby-source-filesystem": "^2.1.56",
"gatsby-transformer-sharp": "^2.4.3",
"node-sass": "^4.13.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"react-image-lightbox": "^5.1.1",
"react-lazyload": "^2.6.7"
},
"devDependencies": {
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"sanitize.css": "^11.0.0",
"stylelint": "^13.2.1",
"stylelint-config-recess-order": "^2.0.4",
"stylelint-config-standard": "^20.0.0"
},
"keywords": [
"imagine-the-future"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"lint": "run-s lint:*",
"lintfix": "run-s lintfix:*",
"lint:js": "eslint --ext js,jsx .",
"lint:style": "stylelint src/**/*.scss",
"lintfix:js": "eslint --ext js,jsx . --fix",
"lintfix:style": "stylelint src/**/*.scss --fix",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"precommit": "lint-staged",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/tsukuba-shinkan/shinkan-web"
},
"bugs": {
"url": "https://github.com/tsukuba-shinkan/shinkan-web/issues"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"lint-staged": {
"*.js": [
"eslint"
],
"*.jsx": [
"eslint"
],
"*.scss": [
"stylelint"
]
}
}