-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.24 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
{
"name": "nx-react-native-cli",
"version": "1.1.0",
"description": "A react native starter (with NX) cli script",
"type": "module",
"files": [
"lib",
"templates",
"README.md",
"package.json"
],
"bin": {
"nxrn": "./lib/index.cjs"
},
"scripts": {
"start": "./src/index.js",
"build": "rm -rf lib && esbuild src/index.js --format=cjs --platform=node --bundle --outfile=lib/index.cjs --minify --analyze",
"prepublish": "npm run build",
"example": "npm run relink && npx nxrn create example",
"example-fresh": "npm run relink && npx nxrn create example-fresh --fresh",
"generate-diff": "./generate-diff.sh",
"show-diff": "npx diff2html -s side --sc --hc --cs light -i file -o preview -F diff.html -- diff.diff && open diff.html",
"relink": "npm unlink nxrn && npm run prepublish && npm link",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": {
"email": "[email protected]",
"name": "Jee Lorenz Mercado"
},
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"inquirer": "^10.0.2",
"ora": "^8.0.1",
"prettier": "^3.3.3"
},
"devDependencies": {
"diff2html-cli": "^5.2.15",
"esbuild": "^0.23.0"
}
}