-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.84 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.84 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
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
{
"name": "apy-fi",
"description": "Wappulehti Äpyn verkkosivut",
"version": "2.0.0",
"author": "Timo Riski",
"license": "MIT",
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"lint:style": "stylelint src",
"lint:src": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx src",
"lint": "yarn lint:src && yarn lint:style",
"lint:fix": "yarn lint:src --fix && yarn lint:style --fix",
"prepare": "husky install",
"pre-commit": "tsc --noEmit && lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix && stylelint --fix"
]
},
"dependencies": {
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@react-three/drei": "^9.23.5",
"@react-three/fiber": "^8.6.0",
"emotion": "^11.0.0",
"emotion-server": "^11.0.0",
"emotion-theming": "^11.0.0",
"gray-matter": "^4.0.3",
"hamburger-react": "^2.5.0",
"hamburgers": "^1.2.1",
"history": "^5.3.0",
"imports-loader": "^4.0.1",
"next": "^12.2.5",
"next-compose-plugins": "^2.2.1",
"next-transpile-modules": "^9.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-emotion": "^10.0.0",
"react-error-boundary": "^3.1.4",
"react-helmet": "^6.1.0",
"react-icons": "^4.4.0",
"react-player": "^2.10.1",
"react-responsive-carousel": "^3.2.23",
"react-spring": "^9.5.2",
"react-three-fiber": "^5.3.19",
"remark": "^14.0.2",
"remark-html": "^15.0.1",
"sass": "^1.54.5",
"sharp": "^0.30.7",
"styled-components": "^5.3.5",
"three": "^0.143.0"
},
"devDependencies": {
"@netlify/plugin-nextjs": "^4.18.0",
"@next/eslint-plugin-next": "^12.2.5",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@svgr/webpack": "^6.3.1",
"@types/node": "^18.7.13",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/three": "^0.143.1",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"@typescript-eslint/parser": "^5.34.0",
"eslint": "8.22.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.5.0",
"eslint-config-react-app": "7.0.1",
"eslint-import-resolver-typescript": "3.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss-syntax": "^0.36.2",
"prettier": "^2.7.1",
"stylelint": "^14.11.0",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-order": "^5.0.0",
"typescript": "^4.7.4",
"url-loader": "^4.1.1"
},
"dependenciesMeta": {
"@react-spring/core": {
"built": false
}
},
"repository": {
"type": "git",
"url": "https://github.com/wappulehti-apy/apy-fi"
},
"packageManager": "yarn@3.2.2"
}