-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 988 Bytes
/
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
{
"name": "awyisser",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test:unit": "jest",
"test:e2e": "playwright test",
"vercel-build": "yum install libuuid-devel libmount-devel && cp /lib64/{libuuid,libmount,libblkid}.so.1 node_modules/canvas/build/Release/ && next build"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"dependencies": {
"bad-words": "^3.0.4",
"canvas": "2.11.2",
"classnames": "^2.3.2",
"gm": "^1.25.0",
"next": "12.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-textarea-autosize": "^8.3.4"
},
"devDependencies": {
"@playwright/test": "^1.27.1",
"@types/jest": "^29.1.2",
"autoprefixer": "^10.4.12",
"babel-jest": "^29.1.2",
"jest": "^29.1.2",
"node-mocks-http": "^1.11.0",
"postcss": "^8.4.17",
"prettier": "2.7.1",
"tailwindcss": "^3.1.8"
}
}