-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.7 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "inkubator-it",
"private": true,
"description": "Web Profile to display Inkubator IT HMIF related info",
"version": "1.0.0",
"author": "Inkubator IT HMIF ITB",
"engines": {
"node": "14.x"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.27",
"@fortawesome/free-brands-svg-icons": "^5.12.1",
"@fortawesome/free-regular-svg-icons": "^5.12.1",
"@fortawesome/free-solid-svg-icons": "^5.12.1",
"@fortawesome/react-fontawesome": "^0.1.8",
"@types/axios": "^0.14.0",
"@types/lodash": "^4.14.149",
"@types/react-scroll": "^1.5.4",
"@types/react-select": "^3.0.10",
"@types/react-text-mask": "^5.4.6",
"@types/react-tooltip": "^3.11.0",
"@types/react-vertical-timeline-component": "^2.5.0",
"axios": "^0.19.2",
"dayjs": "^1.8.20",
"gatsby": "^2.19.18",
"gatsby-image": "^2.2.41",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-manifest": "^2.2.41",
"gatsby-plugin-offline": "^3.0.35",
"gatsby-plugin-react-helmet": "^3.1.22",
"gatsby-plugin-sass": "^2.1.28",
"gatsby-plugin-sharp": "^2.4.5",
"gatsby-plugin-typescript": "^2.1.27",
"gatsby-source-filesystem": "^2.1.48",
"gatsby-transformer-sharp": "^2.3.14",
"lodash": "^4.17.15",
"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-scroll": "^1.7.16",
"react-select": "^3.0.8",
"react-spinners": "^0.8.0",
"react-text-mask": "^5.4.3",
"react-tooltip": "^4.0.3",
"react-vertical-timeline-component": "^2.5.0",
"sweetalert2": "^9.7.2",
"sweetalert2-react-content": "^3.0.0",
"text-mask-addons": "^3.8.0",
"typed.js": "^2.0.11"
},
"devDependencies": {
"@types/node": "^13.7.1",
"@types/react": "^16.9.20",
"@types/react-dom": "^16.9.5",
"@types/react-helmet": "^5.0.15",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-react-app": "^5.2.0",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.4.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"surge": "^0.21.3",
"typescript": "^3.7.5",
"yarnhook": "^0.4.3"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"analyze:lint": "eslint --ext .tsx --ext .ts --ext .js .",
"analyze:prettier": "prettier --check '**/*.{tsx,ts,js,scss,md,json}'",
"analyze": "npm run analyze:lint && npm run analyze:prettier",
"build": "gatsby build",
"develop": "gatsby develop",
"fix:lint": "eslint --ext .tsx --ext .ts --ext .js . --fix",
"fix:prettier": "prettier --write '**/*.{tsx,ts,js,scss,md,json}'",
"fix": "npm run fix:lint && npm run fix:prettier",
"start": "npm run develop",
"serve": "gatsby serve",
"prestaging": "npm run build",
"staging": "surge public/ --domain https://iit2019.surge.sh",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-checkout": "yarnhook",
"post-merge": "yarnhook",
"post-rewrite": "yarnhook"
}
},
"lint-staged": {
"*.{tsx,ts,js,scss,md,json}": [
"npm run fix",
"git add ."
]
},
"repository": {
"type": "git",
"url": "https://github.com/IIT-Dev/InkubatorIT-Rev-2019"
},
"bugs": {
"url": "https://github.com/IIT-Dev/InkubatorIT-Rev-2019/issues"
}
}