-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·66 lines (66 loc) · 2.06 KB
/
package.json
File metadata and controls
executable file
·66 lines (66 loc) · 2.06 KB
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
{
"name": "travnikov.dev",
"version": "0.1.0",
"description": "Personal website of software developer Roman Travnikov",
"main": "index.js",
"repository": "https://github.com/TravnikovDev/travnikov.dev.github.io",
"author": "Travnikov.dev",
"license": "ISC",
"scripts": {
"build": "gatsby build",
"dev": "gatsby develop",
"develop:cypress": "cross-env CYPRESS_SUPPORT=y npm dev",
"build:cypress": "cross-env CYPRESS_SUPPORT=y npm build",
"start": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepare": "husky && husky install",
"pre-commit": "npm run typecheck && npm run build"
},
"dependencies": {
"@mantine/core": "^7.6.2",
"@mantine/form": "^7.6.2",
"@mantine/hooks": "^7.6.2",
"@react-three/drei": "^9.99.8",
"@react-three/fiber": "^8.18.0",
"dotenv": "^16.4.7",
"gatsby": "^5.13.6",
"gatsby-plugin-manifest": "^5.13.1",
"gatsby-plugin-mdx": "^5.13.1",
"gatsby-plugin-offline": "^6.14.0",
"gatsby-plugin-webpack-statoscope": "^1.0.3",
"gatsby-source-filesystem": "^5.13.1",
"gatsby-transformer-remark": "^6.14.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-icons": "^5.5.0",
"three": "^0.162.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-helmet": "^6.1.11",
"@types/three": "^0.162.0",
"babel-jest": "^29.7.0",
"cross-env": "^7.0.3",
"gatsby-plugin-dts-css-modules": "^3.0.0",
"husky": "^8.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.4.3",
"postcss": "^8.4.35",
"ts-jest": "^29.2.6",
"typescript": "^5.5.3"
}
}