-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.07 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
{
"name": "stfu-and-click",
"engines" : { "node" : ">=0.12" },
"private": true,
"description": "A test assignment for Applifting",
"version": "0.1.0",
"author": "Michal Kurz <[email protected]>",
"dependencies": {
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@reach/router": "^1.3.4",
"@types/node-uuid": "^0.0.28",
"@types/react-helmet": "^6.1.0",
"@types/react-redux": "^7.1.9",
"axios": "^0.21.1",
"emotion-theming": "^10.0.27",
"gatsby": "^2.24.26",
"gatsby-image": "^2.4.14",
"gatsby-plugin-emotion": "^4.3.10",
"gatsby-plugin-manifest": "^2.4.21",
"gatsby-plugin-offline": "^3.2.21",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-sharp": "^2.6.24",
"gatsby-plugin-typescript": "^2.4.17",
"gatsby-source-filesystem": "^2.3.23",
"gatsby-transformer-sharp": "^2.5.12",
"immer": "^8.0.1",
"lodash": "^4.17.20",
"node-uuid": "^1.4.8",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.1.0",
"react-redux": "^7.2.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"ts-action": "^11.0.0",
"ts-action-immer": "^3.0.3"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/reach__router": "^1.3.6",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-prettier": "^3.1.4",
"gh-pages": "^3.1.0",
"jest": "^26.5.3",
"prettier": "2.0.5",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"keywords": [
"gatsby"
],
"license": "WTFPL",
"scripts": {
"build": "gatsby build && cp static/_redirects public/_redirects",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "jest",
"deploy": "gatsby build --prefix-paths && gh-pages -d public"
},
"repository": {
"type": "git",
"url": "https://github.com/michal-kurz/stfuandclick"
},
"bugs": {
"there-are-no-bugs": true
}
}