-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.54 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
{
"name": "np-dough",
"private": true,
"description": "Make neapolitan pizza dough!",
"version": "0.1.0",
"author": "Fabio Berta <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fnberta/np-dough"
},
"bugs": {
"url": "https://github.com/fnberta/np-dough/issues"
},
"scripts": {
"build": "gatsby build",
"dev": "gatsby develop -H 0.0.0.0",
"serve": "gatsby serve",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,json,css,scss,sass,md,yml,yaml}'",
"transform": "python3 scripts/values.py",
"gen-graphql": "graphql-codegen --config gql.yml",
"typecheck": "tsc --noEmit",
"test": "jest"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.9.0",
"bulma": "^0.7.5",
"classnames": "^2.2.6",
"gatsby": "^2.11.1",
"gatsby-image": "^2.2.3",
"gatsby-plugin-manifest": "^2.2.0",
"gatsby-plugin-offline": "^2.2.0",
"gatsby-plugin-react-helmet": "^3.1.0",
"gatsby-plugin-sass": "^2.1.0",
"gatsby-plugin-sharp": "^2.2.1",
"gatsby-plugin-typescript": "^2.1.0",
"gatsby-source-filesystem": "^2.1.1",
"gatsby-transformer-csv": "^2.1.0",
"gatsby-transformer-json": "^2.2.0",
"gatsby-transformer-sharp": "^2.2.0",
"immer": "^3.1.3",
"luxon": "^1.16.0",
"node-sass": "^4.12.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1"
},
"devDependencies": {
"@graphql-codegen/add": "^1.3.1",
"@graphql-codegen/cli": "^1.3.1",
"@graphql-codegen/typescript": "1.3.1",
"@graphql-codegen/typescript-operations": "1.3.1",
"@types/classnames": "^2.2.8",
"@types/jest": "^24.0.15",
"@types/luxon": "^1.15.1",
"@types/node": "^12.0.10",
"@types/react": "^16.8.22",
"@types/react-dom": "^16.8.4",
"@types/react-helmet": "^5.0.8",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^1.6.1",
"husky": "^2.7.0",
"jest": "^24.8.0",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"typescript": "^3.5.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && lint-staged"
}
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --fix",
"git add"
],
"**/*.{json,css,scss,sass,md,yml,yaml}": [
"prettier --write",
"git add"
]
}
}