-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
46 lines (46 loc) · 1.68 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": "cra-universal-monorepo",
"description": "CRA Universal Monorepo",
"private": true,
"scripts": {
"test": "pnpm run test:ci --filter=@cra-express/*",
"bs": "pnpm recursive install && npm run build:lib",
"bootstrap": "pnpm recursive install",
"ls": "pnpm -r --filter=!cra-universal-monorepo exec pwd",
"clean": "npm run clean2 && npm run clean:lib && rimraf node_modules",
"clean2": "pnpm -r --filter=!cra-universal-monorepo exec rimraf node_modules",
"clean:lib": "pnpm -r --filter=@cra-express/* exec rimraf lib",
"build:lib": "pnpm run build --filter=@cra-express/*",
"prerelease": "npm run build:lib",
"release": "pnpm -r --filter=@cra-express/* --filter=cra-universal --filter=babel-preset-cra-universal exec npm publish",
"release:beta": "npm run release -- --npm-tag=beta",
"ul:test": "npm run exec:ul -- npm t --",
"temp:start:client": "pnpm run start --filter=cra-template",
"temp:start:server": "pnpm run crau:start --filter=cra-template",
"temp:build": "pnpm run crau:build --filter=cra-template"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antonybudianto/cra-universal.git"
},
"keywords": [
"express",
"react",
"create-react-app",
"ssr"
],
"author": "Antony Budianto <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/antonybudianto/cra-universal/issues"
},
"homepage": "https://github.com/antonybudianto/cra-universal#readme",
"devDependencies": {
"@babel/cli": "7.17.10",
"@babel/core": "7.17.10",
"@babel/preset-env": "7.17.10",
"@babel/preset-react": "7.16.7",
"jest": "24.9.0",
"rimraf": "^3.0.0"
}
}