-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.64 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
{
"private": true,
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "next",
"build": "next build",
"static": "next build && next export",
"start": "next start",
"lint": "prettier --write . && next lint",
"format": "prettier --write .",
"clean": "rm -rf out"
},
"dependencies": {
"next": "^13.5.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.11",
"zod": "^3.22.4",
"axios": "^1.4.0",
"keen-slider": "^6.8.5",
"three": "^0.154.0",
"react-router": "^6.14.2",
"react-router-dom": "^6.14.2",
"lodash": "^4.17.21",
"papaparse": "^5.4.1",
"@faker-js/faker": "^8.0.2",
"mariadb": "^3.2.0",
"crawlee": "^3.5.2",
"playwright": "^1.37.1",
"uuid": "^9.0.1",
"gsap": "^3.12.2"
},
"devDependencies": {
"@types/uuid": "^9.0.5",
"@types/lodash": "^4.14.194",
"@types/node": "~18.15.11",
"@types/papaparse": "5.3.7",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"@types/three": "^0.154.0",
"@types/styled-components": "^5.1.26",
"@types/uuid4": "^2.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"eslint": "^8.51.0",
"eslint-config-next": "^13.5.4",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"file-loader": "^6.2.0",
"url-loader": "^4.1.1"
}
}