-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.2 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": "OGP-generator",
"version": "0.0.1",
"main": "index.js",
"repository": "https://github.com/yt-ymmt/OGP-generator.git",
"author": "yt-ymmt",
"license": "MIT",
"scripts": {
"dev": "next -p 3456",
"build": "next build",
"export": "next export",
"start": "next start -p 80",
"lint:eslint": "eslint 'pages/**/*.ts{,x}'",
"lint:fix": "eslint --fix 'pages/**/*.ts{,x}'",
"lint:tsc": "tsc --noEmit",
"now-build": "yum install libuuid-devel libmount-devel && cp /lib64/{libuuid,libmount,libblkid}.so.1 node_modules/canvas/build/Release/ && yarn run build"
},
"dependencies": {
"canvas": "2.6.1",
"next": "^10.2.3",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/node": "^15.14.9",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"dotenv-cli": "^4.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.27.1",
"prettier": "^2.5.0",
"typescript": "^4.5.2",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1"
}
}