-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 890 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
{
"name": "oh-my-old-tweet-frontend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"parserBuild": "cd packages/twitter-data-parser && yarn build",
"cardBuild": "cd packages/react-tweet-card && yarn dev-build",
"cardProductionBuild": "cd packages/react-tweet-card && yarn build",
"start": "cd packages/oh-my-old-tweet && yarn start",
"siteBuild": "cd packages/oh-my-old-tweet && yarn build",
"cliBuild": "cd packages/omot-cli && yarn build",
"build": "run-s parserBuild cardProductionBuild siteBuild cliBuild",
"test": "cd packages/twitter-data-parser && yarn test"
},
"keywords": [],
"author": "",
"license": "ISC",
"workspaces": [
"packages/*"
],
"devDependencies": {
"npm-run-all": "^4.1.5",
"tailwindcss": "^3.3.2"
},
"dependencies": {
"async-sema": "^3.1.1"
},
"private": true
}