forked from kufu/hello-world
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.76 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
{
"name": "hello-world",
"description": "SmartHR's recruit site.",
"version": "1.0.0",
"author": "SmartHR",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kufu/hello-world.git"
},
"bugs": {
"url": "https://github.com/kufu/hello-world/issues"
},
"homepage": "https://github.com/kufu/hello-world#readme",
"engines": {
"node": "12.13.0",
"yarn": "^1.19.1"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"serve": "gatsby serve",
"lint:ts": "eslint 'src/**/*.ts{,x}'",
"lint:style": "stylelint 'src/**/*.ts{,x}'",
"lint": "run-p lint:*",
"format": "eslint --fix 'src/**/*.ts{,x}'"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"gatsby": "^2.19.2",
"gatsby-link": "^2.2.28",
"gatsby-plugin-graphql-codegen": "^2.1.1",
"gatsby-plugin-react-helmet": "^3.1.22",
"gatsby-plugin-typescript": "^2.1.26",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"react-hot-keys": "^2.4.5",
"styled-components": "^5.0.0",
"styled-reset": "^4.0.10"
},
"devDependencies": {
"@types/node": "^13.1.8",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/react-helmet": "^5.0.15",
"@types/styled-components": "^4.4.2",
"eslint": "^6.8.0",
"eslint-config-smarthr": "^4.0.0",
"husky": "^4.2.0",
"lint-staged": "^10.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"stylelint": "^13.0.0",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-standard": "^19.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.9.0",
"typescript": "^3.7.5"
}
}