-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.29 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
{
"name": "create-rnw-library",
"version": "1.0.15",
"description": "CLI which allows creating libraries for web and React Native applications",
"main": "./lib/index.js",
"bin": {
"create-rnw-library": "./lib/index.js"
},
"type": "commonjs",
"scripts": {
"start": "ts-node-dev --respawn src/index.ts",
"create": "yarn build",
"build": "tsc -p ./src",
"refresh": "rm -rf ./node_modules ./yarn.lock && yarn",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mr-ristic/create-rnw-library.git"
},
"keywords": [
"react",
"react-native",
"preact",
"library",
"module",
"package",
"create-react-app",
"react-native-web",
"cli",
"component",
"ui-kit",
"webpack",
"publish",
"babel"
],
"author": "Marko Ristic <mr@markoristic.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mr-ristic/create-rnw-library/issues"
},
"homepage": "https://github.com/mr-ristic/create-rnw-library#readme",
"dependencies": {
"chalk": "^4.1.2",
"clear": "^0.1.0",
"commander": "^8.3.0",
"conf": "^10.1.1",
"figlet": "^1.5.2",
"git-config-path": "^2.0.0",
"github-username": "^7.0.0",
"globby": "^11.0.0",
"handlebars": "^4.7.7",
"ora": "^4.0.3",
"p-each-series": "^2.1.0",
"parse-git-config": "^3.0.0",
"path": "^0.12.7",
"inquirer": "^7.1.0",
"validate-npm-package-name": "^3.0.0",
"which": "^2.0.2",
"make-dir": "^3.0.2",
"execa": "^4.0.0"
},
"devDependencies": {
"@types/clear": "^0.1.2",
"@types/figlet": "^1.5.4",
"@types/git-config-path": "^2.0.1",
"@types/inquirer": "^8.1.3",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.0",
"@types/ora": "^3.2.0",
"@types/parse-git-config": "^3.0.1",
"@types/rmfr": "^2.0.1",
"@types/validate-npm-package-name": "^3.0.3",
"@types/which": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.4.5",
"nodemon": "^2.0.15",
"prettier": "2.5.1",
"rmfr": "^2.0.0",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4"
}
}