-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
90 lines (90 loc) · 2.3 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "create-belt-app",
"author": "thoughtbot, Inc.",
"license": "MIT",
"version": "0.7.4",
"description": "React Native Expo project starter and generator CLI",
"repository": {
"type": "git",
"url": "git+https://github.com/thoughtbot/belt.git"
},
"homepage": "https://github.com/thoughtbot/belt#readme",
"type": "module",
"exports": "./dist/index.js",
"bin": {
"create-belt-app": "./dist/index.js",
"belt": "./dist/index.js"
},
"files": [
"dist",
"templates",
"README.md",
"LICENSE",
"CONTRIBUTING.md",
"package.json"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist node_modules",
"start": "node dist/index.js",
"lint": "run-p lint:eslint lint:types lint:prettier",
"lint:eslint": "eslint --max-warnings=0 --ext js,jsx,ts,tsx .",
"lint:prettier": "prettier --check '**/*' --ignore-unknown",
"lint:types": "tsc",
"fix:prettier": "prettier --write '**/*' --ignore-unknown",
"test": "vitest",
"test:run": "vitest run",
"test:all": "yarn lint && yarn test:run",
"pub:beta": "yarn build && npm publish --tag beta",
"pub:release": "yarn build && npm publish",
"prepare": "husky"
},
"dependencies": {
"@expo/config": "^8.5.4",
"@inquirer/prompts": "^3.2.0",
"@thoughtbot/eslint-config": "^1.0.2",
"chalk": "^5.2.0",
"commander": "^10.0.1",
"eslint": "^8.45.0",
"eta": "^2.1.1",
"fs-extra": "^11.1.1",
"ignore": "^5.3.1",
"lodash": "^4.17.21",
"ora": "^6.3.0",
"prettier": "^3.0.1",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.3",
"@types/lodash": "^4.17.0",
"@types/node": "^18.16.3",
"@types/react": "^18.2.6",
"husky": "^9.0.11",
"memfs": "^4.5.1",
"npm-run-all": "^4.1.5",
"tsup": "^7.2.0",
"typescript": "^5.0.4",
"vitest": "^2.0.5"
},
"eslintConfig": {
"extends": [
"@thoughtbot/eslint-config/base",
"@thoughtbot/eslint-config/prettier",
"@thoughtbot/eslint-config/typescript"
],
"ignorePatterns": [
"templates",
"__mocks__/**/*.js",
"/bin",
"/dist",
"/builds",
"vitest.setup.js"
],
"rules": {
"no-console": "off",
"import/order": "off",
"no-continue": "off"
}
}
}