-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 892 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
31
32
{
"name": "pnpm-monorepo-demo",
"version": "1.0.0",
"description": "A monorepo demo with pnpm",
"main": "index.js",
"scripts": {
"preinstall": "npx only-allow pnpm",
"test": "pnpm run test",
"dev:next-app": "pnpm dev --filter \"@demo/next-app\"",
"build:next-app": "pnpm build --filter \"@demo/next-app\"",
"start:next-app": "pnpm start --filter \"@demo/next-app\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/MadCcc/pnpm-monorepo-demo.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MadCcc/pnpm-monorepo-demo/issues"
},
"homepage": "https://github.com/MadCcc/pnpm-monorepo-demo#readme",
"dependencies": {
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@types/react": "17.0.37",
"@types/react-dom": "^17.0.11",
"typescript": "4.5.2"
}
}