-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 2.25 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": "static-sticky",
"description": "Sticky's website (svsticky.nl)",
"version": "2.6.3",
"author": "Commit (https://github.com/orgs/svsticky/teams/commit)",
"dependencies": {
"@babel/compat-data": "^7.16.4",
"atomic-layout": "^0.16.2",
"core-js": "^3.19.3",
"dotenv": "^10.0.0",
"gatsby": "^3.14.6",
"gatsby-plugin-image": "^1.14.2",
"gatsby-plugin-manifest": "^3.14.0",
"gatsby-plugin-react-helmet": "^4.14.0",
"gatsby-plugin-react-intl": "^3.0.2",
"gatsby-plugin-styled-components": "^4.14.0",
"gatsby-source-contentful": "^5.14.1",
"markdown-to-jsx": "^7.1.5",
"react": "^16.14.0",
"react-currency-formatter": "^1.1.0",
"react-dom": "^16.14.0",
"react-helmet": "^5.2.1",
"react-pager": "^1.3.3",
"react-slideshow-image": "^3.6.0",
"react-transition-group": "^4.4.2",
"sanitize-html": "^2.6.1",
"semantic-ui-react": "^2.0.4",
"styled-components": "^5.3.3",
"utf-8-validate": "^5.0.7",
"webpack": "^5.65.0"
},
"keywords": [
"static",
"website",
"studyassociation",
"sticky"
],
"license": "MIT",
"scripts": {
"//": "Run configurations to build & watch the semantic folder",
"build-semantic": "cd src/semantic && gulp build-css build-assets",
"watch-semantic": "cd src/semantic && npm run build-semantic && gulp watch",
"build": "npm run build-semantic && gatsby build",
"develop": "gatsby develop",
"format": "npx prettier --write {*,src/**/*}.{js,jsx}",
"test": "echo \"Write tests! -> https://gatsby.app/unit-testing\""
},
"devDependencies": {
"babel-plugin-root-import": "^6.5.0",
"babel-plugin-styled-components": "^2.0.2",
"babel-preset-gatsby": "^2.4.0",
"fomantic-ui": "^2.8.8",
"gulp": "^4.0.2",
"husky": "^4.2.3",
"less": "^3.11.1",
"lint-staged": "^10.1.2",
"prettier": "^1.19.1"
},
"repository": {
"type": "git",
"url": "https://github.com/svsticky/static-sticky"
},
"husky": {
"hooks": {
"//": "Best thing i could find that worked on WSL with the Git from Windows",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{*,src/**/*}.{js,jsx}": [
"npx prettier --write {*,src/**/*}.{js,jsx}"
]
},
"browserslist": [
"defaults"
]
}