-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.24 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
{
"name": "og-canvas",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"vercel-build": "yum install fontconfig && cp /lib64/{libfontconfig.so.1,libfreetype.so.6,libexpat.so.1,libuuid.so.1,libbz2.so.1,libpng15.so.15} node_modules/skia-canvas/lib/v6/ && npm run build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@fontsource/poppins": "^4.5.0",
"@fontsource/ubuntu-mono": "^4.5.0",
"just-debounce-it": "^3.0.1",
"next": "12.0.7",
"normalize.css": "^8.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"skia-canvas": "^0.9.27",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@types/node": "16.11.12",
"@types/react": "17.0.37",
"@types/skia-canvas": "^0.9.2",
"@types/styled-components": "^5.1.18",
"eslint": "8.4.1",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.4.1",
"typescript": "4.5.4"
}
}