-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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
{
"name": "heymentor",
"private": true,
"description": "Hey Mentor app",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"develop": "gatsby develop",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"lint": "eslint . --ignore-path .gitignore --ext .ts,.tsx,.js",
"type-check": "tsc --noEmit",
"build": "gatsby build",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean"
},
"dependencies": {
"gatsby": "^2.26.1",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@types/node": "^12.12.11",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "2.2.1",
"typescript": "^3.9.7"
},
"repository": {
"type": "git",
"url": "https://github.com/Hey-Mentor/web"
},
"bugs": {
"url": "https://github.com/Hey-Mentor/web/issues"
}
}