-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.44 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
{
"name": "gen-opengraph-image",
"version": "1.0.0",
"main": "index.js",
"author": "Mohammed Baqer Ahmed (@losefor)",
"license": "MIT",
"dependencies": {
"@emotion/core": "^10.0.28",
"express": "^4.18.1",
"playwright-aws-lambda": "^0.9.0",
"playwright-core": "^1.26.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-textfit": "^1.1.0",
"typescript": "^4.8.4"
},
"devDependencies": {
"rimraf": "^3.0.2",
"@babel/compat-data": "^7.19.3",
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-replace": "^2.3.1",
"@types/express": "^4.17.14",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react-textfit": "^1.1.0",
"rollup": "^2.1.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-serve": "^2.0.1"
},
"scripts": {
"build": "yarn clean && yarn build:node && yarn build:react && yarn bundle:react",
"dev": "rollup -cw rollup.config.ts -x",
"start": "node dist/server/server.js",
"build:react": "yarn tsc --project tsconfig.react.json",
"bundle:react": "rollup -c rollup.config.ts --bundle",
"build:node": "yarn tsc",
"clean": "yarn rimraf dist"
}
}