-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.74 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
{
"name": "who-is-2-turbo",
"version": "1.0.0",
"private": true,
"description": "Who Is 2 Turbo",
"keywords": [
"gatsby"
],
"scripts": {
"dev": "gatsby develop -o",
"start": "GATSBY_ACTIVE_ENV=local gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "jest",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@fontsource/press-start-2p": "^5.0.0",
"@fontsource/roboto-mono": "^5.0.0",
"autoprefixer": "^10.4.2",
"axios": "^1.0.0",
"firebase": "^8.8.0",
"gatsby": "^5.0.0",
"gatsby-plugin-google-gtag": "^5.0.0",
"gatsby-plugin-image": "^3.0.0",
"gatsby-plugin-manifest": "^5.0.0",
"gatsby-plugin-offline": "^6.0.0",
"gatsby-plugin-postcss": "^6.0.0",
"gatsby-plugin-react-helmet": "^6.0.0",
"gatsby-plugin-sharp": "^5.0.0",
"gatsby-source-filesystem": "^5.0.0",
"gatsby-transformer-sharp": "^5.0.0",
"graphql": "^16.0.0",
"pica": "^9.0.1",
"postcss": "^8.4.8",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-helmet": "^6.1.0",
"swr": "^2.0.0",
"tailwindcss": "^3.0.23"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/pica": "^9.0.0",
"@types/reach__router": "^1.3.10",
"@types/react-helmet": "^6.1.5",
"jest": "^29.0.0",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.5.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"testEnvironment": "node"
}
}