-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.6 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.6 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
{
"name": "designunit4",
"private": true,
"version": "1.0.0",
"description": "unit4 website",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"lint": "next lint",
"format": "next lint -- --fix",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/destroytheimage/designunit4.git"
},
"engines": {
"node": "20.x"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/destroytheimage/designunit4/issues"
},
"homepage": "https://github.com/destroytheimage/designunit4#readme",
"dependencies": {
"@babel/helper-call-delegate": "^7.12.13",
"@nivo/core": "^0.88.0",
"@nivo/sankey": "^0.88.0",
"date-fns": "^2.28.0",
"glob": "^11.1.0",
"gray-matter": "^4.0.3",
"lodash": "^4.18.1",
"next": "^15.5.15",
"next-mdx-remote": "^5.0.0",
"react": "^18.3.1",
"react-compare-image": "^3.4.0",
"react-dom": "^18.3.1",
"swiper": "^11.1.5"
},
"devDependencies": {
"@tsconfig/next": "^2.0.3",
"@types/lodash": "^4.17.13",
"@types/node": "^20.17.6",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"eslint": "^8.33.0",
"eslint-config-next": "^15.5.0",
"eslint-plugin-import": "^2.26.0",
"typescript": "^5.6.3",
"vitest": "^4.0.18"
}
}