-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathpackage.json
79 lines (79 loc) · 2.71 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
{
"engines": {
"node": "14.4.0"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/react": "^16.9.36",
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^6.0.0",
"@types/theme-ui": "^0.3.3",
"@types/uuid": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"eslint": "^7.2.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"gts": "^2.0.2",
"jest": "25.5.4",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2"
},
"scripts": {
"lint-fix": "eslint 'src/**/*.{ts?(x),js?(x)}' --fix",
"lint": "eslint 'src/**/*.{ts?(x),js?(x)}' && tsc --noEmit",
"test": "jest --passWithNoTests",
"verify": "yarn lint && yarn test",
"verify-dev": "eslint 'src/**/*.{ts?(x),js?(x)}'; tsc --noEmit; yarn test # run all checks no matter the results",
"build": "gatsby clean && gatsby build",
"clean": "gatsby clean",
"start": "gatsby build && gatsby serve",
"start-dev": "gatsby develop",
"start-safe": "yarn verify && yarn clean && yarn start # ensure all checks pass, and serve a clean build"
},
"dependencies": {
"@stripe/stripe-js": "^1.7.0",
"bootstrap": "^4.5.0",
"gatsby": "^2.23.3",
"gatsby-plugin-client-side-redirect": "^1.1.0",
"gatsby-plugin-google-analytics": "^2.3.4",
"gatsby-plugin-react-helmet": "^3.3.4",
"gatsby-plugin-sass": "^2.3.4",
"gatsby-plugin-sitemap": "^2.4.5",
"gatsby-source-filesystem": "^2.3.11",
"gatsby-transformer-remark": "^2.8.15",
"gatsby-transformer-yaml": "^2.4.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"lodash": "^4.17.19",
"node-sass": "^4.14.1",
"purecss": "^2.0.3",
"query-string": "^6.13.1",
"react": "^16.13.1",
"react-autosize-textarea": "^7.0.0",
"react-bootstrap": "^1.0.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-select": "^3.1.0",
"rehype-sanitize": "^3.0.1",
"rehype-stringify": "8.0.0",
"remark-breaks": "^1.0.5",
"remark-parse": "^8.0.2",
"remark-rehype": "^7.0.0",
"typescript": "^3.9.5",
"unified": "^9.0.0",
"use-places-autocomplete": "^1.3.6",
"uuid": "^8.1.0",
"webpack": "^4.43.0"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "yarn verify"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}