-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "deck-of-cards",
"version": "1.0.0",
"private": true,
"description": "deck-of-cards",
"author": "Cristian Muscalu",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby clean && gatsby build && gatsby serve",
"test": "jest",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"babel-plugin-styled-components": "^2.0.7",
"gatsby": "^5.2.0",
"gatsby-plugin-image": "^3.2.0",
"gatsby-plugin-sass": "^6.2.0",
"gatsby-plugin-sharp": "^5.2.0",
"gatsby-plugin-sitemap": "^6.2.0",
"gatsby-plugin-styled-components": "^6.2.0",
"gatsby-source-filesystem": "^5.2.0",
"gatsby-transformer-sharp": "^5.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.5",
"react-helmet": "^6.1.0",
"sass": "^1.56.1",
"styled-components": "^5.3.6",
"ts-jest": "^29.0.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/node": "^18.11.10",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"jest-environment-jsdom": "^29.3.1",
"typescript": "^4.9.3"
}
}