UNPKG

2.12 kBJSONView Raw
1{
2 "name": "create-react-native-app",
3 "//": "crna",
4 "version": "3.8.0",
5 "main": "build",
6 "description": "Create React Native apps with no build configuration.",
7 "license": "BSD-3-Clause",
8 "keywords": [
9 "react-native",
10 "react"
11 ],
12 "homepage": "https://github.com/expo/create-react-native-app",
13 "repository": {
14 "type": "git",
15 "url": "https://github.com/expo/create-react-native-app.git"
16 },
17 "author": "Expo <support@expo.io>",
18 "contributors": [
19 "Evan Bacon <bacon@expo.io> (https://github.com/evanbacon)"
20 ],
21 "files": [
22 "build"
23 ],
24 "bin": {
25 "create-react-native-app": "./build/index.js"
26 },
27 "scripts": {
28 "prepublishOnly": "yarn run clean && yarn run build",
29 "lint": "eslint .",
30 "test": "jest",
31 "watch": "yarn run build:dev -w",
32 "build:dev": "ncc build ./src/index.ts -o build/",
33 "build": "ncc build ./src/index.ts -o build/ --minify --no-cache --no-source-map-register",
34 "clean": "rimraf ./build/"
35 },
36 "husky": {
37 "hooks": {
38 "pre-commit": "lint-staged"
39 }
40 },
41 "lint-staged": {
42 "*.{js,ts}": [
43 "eslint --fix",
44 "prettier --write",
45 "git add"
46 ]
47 },
48 "devDependencies": {
49 "@babel/core": "^7.9.6",
50 "@babel/preset-env": "^7.9.6",
51 "@expo/babel-preset-cli": "0.2.8",
52 "@expo/json-file": "^8.2.21",
53 "@expo/package-manager": "^0.0.28",
54 "@expo/spawn-async": "^1.5.0",
55 "@types/fs-extra": "^8.1.0",
56 "@types/getenv": "^1.0.0",
57 "@types/node": "^12.6.8",
58 "@types/prompts": "2.0.8",
59 "@types/tar": "4.0.3",
60 "@vercel/ncc": "^0.27.0",
61 "babel-jest": "^26.0.1",
62 "chalk": "2.4.2",
63 "commander": "2.20.0",
64 "eslint": "^6.6.0",
65 "eslint-config-universe": "^2.1.0",
66 "execa": "^4.0.1",
67 "fs-extra": "^9.0.0",
68 "getenv": "^1.0.0",
69 "got": "^11.1.3",
70 "husky": "^1.1.3",
71 "jest": "^26.0.1",
72 "lint-staged": "^8.0.4",
73 "minipass": "^3.1.1",
74 "ora": "^4.0.3",
75 "prettier": "^1.19.0",
76 "prompts": "2.3.2",
77 "tar": "^6.0.1",
78 "terminal-link": "^2.1.1",
79 "typescript": "3.7.3",
80 "update-check": "1.5.4"
81 }
82}