-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
package.json
63 lines (63 loc) · 1.55 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "create-react-native-app",
"//": "crna",
"version": "4.0.0",
"main": "build",
"description": "Create React Native apps with no build configuration.",
"license": "BSD-3-Clause",
"keywords": [
"react-native",
"react"
],
"homepage": "https://github.com/expo/create-react-native-app",
"repository": {
"type": "git",
"url": "https://github.com/expo/create-react-native-app.git"
},
"author": "Expo <[email protected]>",
"contributors": [
"Evan Bacon <[email protected]> (https://github.com/evanbacon)"
],
"files": [
"build"
],
"bin": {
"create-react-native-app": "./build/index.js"
},
"scripts": {
"prepublishOnly": "yarn run clean && yarn run build",
"lint": "expo-module lint",
"test": "expo-module test",
"watch": "yarn run build:dev -w",
"build:dev": "ncc build ./src/index.ts -o build/",
"build": "ncc build ./src/index.ts -o build/ --minify --no-cache --no-source-map-register",
"clean": "expo-module clean"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"devDependencies": {
"@types/node": "^20.14.2",
"@vercel/ncc": "^0.38.1",
"babel-jest": "^29.7.0",
"chalk": "2.4.2",
"eslint": "^8.57.0",
"eslint-config-universe": "^13.0.0",
"execa": "^4.0.1",
"expo-module-scripts": "^3.5.2",
"husky": "^1.1.3",
"jest": "^29.7.0",
"lint-staged": "^8.0.4",
"prettier": "^3.3.1",
"typescript": "^5.4.5"
}
}