-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.05 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.05 KB
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
{
"name": "twitter-clone",
"version": "0.0.1",
"private": true,
"packages": [
"packages/*"
],
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"scripts": {
"bootstrap": "pnpm install",
"preinstall": "npx only-allow pnpm",
"clean": "pnpm recursive exec -- rm -rf node_modules && rm -rf node_modules",
"build": "node scripts/build.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"web:dev": "cd apps/web && pnpm dev",
"server:dev": "cd apps/server && pnpm start:dev",
"server:debug": "cd apps/server && pnpm start:debug",
"mobile:dev": "cd apps/mobile && pnpm start"
},
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.15.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-terser": "^0.4.4",
"chalk": "^5.3.0",
"eslint": "^9.1.0",
"execa": "^8.0.1",
"minimist": "^1.2.8",
"npm-run-all": "^4.1.5",
"rollup": "^4.13.0",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.4.2"
}
}