-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.56 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
{
"name": "@hageveld/brugklas-web",
"description": "Aanmeldformulier voor de brugklas op het Atheneum College Hageveld",
"version": "1.0.0",
"author": "Luit Hollander <[email protected]> (https://luit.me)",
"homepage": "https://brugklas.hageveld.nl",
"repository": "https://github.com/hageveld/brugklas.git",
"license": "MIT",
"scripts": {
"tscheck": "tsc --noEmit --project tsconfig.json",
"tslint": "tslint --project .",
"build": "rimraf ./.cache && rimraf ./public && gatsby build",
"dev": "rimraf ./.cache && gatsby develop",
"serve": "gatsby serve",
"clean": "rimraf ./.cache && rimraf ./public",
"prettier:diff": "prettier --write --config ./.prettierrc --list-different \"src/**/*.ts\" \"src/**/*.tsx\" \"*.js\" \"gatsby/**/*.js\""
},
"dependencies": {
"@babel/core": "7.4.0",
"@babel/plugin-proposal-class-properties": "7.4.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/polyfill": "7.4.0",
"@babel/preset-env": "7.4.2",
"@babel/preset-react": "7.0.0",
"@babel/runtime": "7.7.2",
"@fortawesome/fontawesome-svg-core": "1.2.17",
"@fortawesome/free-brands-svg-icons": "5.8.1",
"@fortawesome/free-regular-svg-icons": "5.8.1",
"@fortawesome/free-solid-svg-icons": "5.8.1",
"@fortawesome/react-fontawesome": "0.1.4",
"@react-pdf/renderer": "1.6.8",
"antd": "3.23.2",
"axios": "0.19.0",
"babel-plugin-import": "1.12.1",
"babel-plugin-styled-components": "1.10.0",
"faker": "4.1.0",
"gatsby": "2.2.8",
"gatsby-image": "2.0.34",
"gatsby-node-helpers": "0.3.0",
"gatsby-plugin-antd": "2.0.2",
"gatsby-plugin-less": "3.0.9",
"gatsby-plugin-manifest": "2.0.24",
"gatsby-plugin-react-helmet": "3.0.10",
"gatsby-plugin-remove-trailing-slashes": "2.1.7",
"gatsby-plugin-robots-txt": "1.4.0",
"gatsby-plugin-sass": "2.0.11",
"gatsby-plugin-sharp": "2.0.30",
"gatsby-plugin-sitemap": "2.2.14",
"gatsby-plugin-styled-components": "3.0.7",
"gatsby-plugin-typescript": "2.0.11",
"gatsby-source-filesystem": "2.0.29",
"gatsby-transformer-sharp": "2.1.17",
"gatsby-transformer-yaml": "2.1.12",
"less": "3.10.3",
"moment": "2.24.0",
"node-sass": "4.11.0",
"pigeon-maps": "0.14.0",
"pigeon-marker": "0.3.4",
"react": "16.8.5",
"react-dom": "16.8.5",
"react-helmet": "5.2.1",
"react-redux": "7.1.1",
"redux": "4.0.4",
"redux-logger": "3.0.6",
"redux-persist": "6.0.0",
"source-map-support": "0.5.11",
"styled-components": "4.0.2",
"ts-node": "8.0.3",
"typeface-lato": "0.0.54",
"zxcvbn": "4.4.2"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "7.6.2",
"@types/node": "11.11.6",
"@types/react": "16.8.8",
"@types/react-helmet": "5.0.8",
"@types/redux-logger": "3.0.7",
"@types/styled-components": "4.0.2",
"husky": "1.3.1",
"lint-staged": "8.1.5",
"prettier": "1.16.4",
"rimraf": "2.6.3",
"tslint": "5.14.0",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "6.1.0",
"tslint-react": "3.6.0",
"typescript": "3.3.4000"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write --config ./.prettierrc --config-precedence file-override",
"tslint --project .",
"git add"
],
"*.js": [
"prettier --write --config ./.prettierrc --config-precedence file-override",
"git add"
]
},
"husky": {
"hooks": {
"post-commit": "git update-index --again",
"pre-commit": "lint-staged",
"pre-push": "npm run tslint && npm run tscheck"
}
}
}