-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.08 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.08 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
{
"name": "pixel-sorter",
"version": "1.1.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest"
},
"dependencies": {
"@radix-ui/react-slider": "^0.1.3",
"@storyofams/next-password-protect": "^1.6.0",
"draggable": "^4.2.0",
"next": "^12.1.5",
"next-seo": "^5.4.0",
"next-themes": "^0.1.1",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.0",
"@types/jest": "^27.4.0",
"@types/react": "17.0.21",
"autoprefixer": "^10.3.4",
"babel-jest": "^27.4.6",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"jest": "^27.4.7",
"jest-canvas-mock": "^2.3.1",
"postcss": "^8.3.6",
"tailwindcss": "^3.0.24",
"ts-jest": "^27.1.3",
"ts-jest-resolver": "^2.0.0",
"typescript": "^4.6.4"
},
"jest": {
"testEnvironment": "jsdom",
"testMatch": [
"**/__tests__/**.test.(ts|tsx|js)"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"resolver": "ts-jest-resolver",
"setupFiles": [
"jest-canvas-mock"
]
}
}