forked from antonybudianto/cra-universal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.58 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
47
48
49
50
51
52
{
"name": "cra-universal-monorepo",
"description": "CRA Universal Monorepo",
"private": true,
"scripts": {
"build": "lerna run build",
"crau:build": "lerna run crau:build",
"test": "lerna run test:ci",
"watch": "lerna run --parallel watch",
"bootstrap": "lerna bootstrap",
"clean": "lerna clean",
"clean:build": "lerna exec -- rimraf lib",
"build:lib": "npm run build -- --ignore={cra-universal-demo,cra-template}",
"prerelease": "npm run build:lib",
"release": "lerna publish",
"ls": "lerna ls",
"release:next": "npm run release -- --npm-tag=next",
"exec:rp": "lerna exec --scope @cra-express/redux-prefetcher --",
"exec:rr": "lerna exec --scope @cra-express/router-prefetcher --",
"exec:ul": "lerna exec --scope @cra-express/universal-loader --",
"ul:test": "npm run exec:ul -- npm t --"
},
"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",
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"devDependencies": {
"@babel/cli": "7.1.5",
"@babel/core": "7.1.5",
"@babel/preset-env": "7.1.5",
"@babel/preset-react": "7.0.0",
"babel-core": "7.0.0-bridge.0",
"jest": "^23.6.0",
"lerna": "3.4.3",
"rimraf": "^2.6.2"
}
}