-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.46 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
{
"name": "imas-palette",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"test:update": "jest -u",
"test:e2e": "playwright test",
"fmt": "prettier --write .",
"fmt:colors": "prettier --write ./data/colors.ts",
"create:colors": "ts-node ./tools/create-colors.ts"
},
"dependencies": {
"next": "15.0.3",
"react": "18.3.1",
"react-device-detect": "^2.2.3",
"react-dom": "18.3.1",
"react-github-corner": "^2.5.0",
"react-icons": "^5.0.1",
"react-infinite-scroller": "^1.2.6",
"react-scroll": "^1.9.0",
"use-media": "^1.5.0"
},
"devDependencies": {
"@playwright/test": "^1.42.1",
"@tailwindcss/forms": "^0.5.7",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^16.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/color-convert": "^2.0.3",
"@types/jest": "^29.5.12",
"@types/node": "^22.0.0",
"@types/react": "18.3.12",
"@types/react-scroll": "^1.8.10",
"autoprefixer": "^10.4.18",
"axios": "^1.6.7",
"color-classifier": "^0.0.1",
"color-convert": "^2.0.1",
"eslint": "9.15.0",
"eslint-config-next": "15.0.3",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "5.6.3"
}
}