-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.4 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
{
"name": "rnutils",
"version": "0.4.2",
"description": "Command line utilities for creating common react native patterns.",
"main": "index.ts",
"scripts": {
"test": "jest",
"pretsc": "yarn compileHandlebars & rm -rf ./lib",
"tsc": "./node_modules/typescript/bin/tsc & ./node_modules/copyfiles/copyfiles -f ./src/lib/templates/** ./lib/templates",
"compileHandlebars": "./node_modules/handlebars/bin/handlebars ./src/lib/templates/ -f ./src/lib/templates/templates.js --commonjs=handlebars"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tm-3/rnutils.git"
},
"keywords": [
"react",
"native",
"typescript",
"storybook",
"mobx"
],
"author": "Tom Miller",
"license": "MIT",
"bugs": {
"url": "https://github.com/tm-3/rnutils/issues"
},
"bin": {
"rnutils": "./index.js"
},
"homepage": "https://github.com/tm-3/rnutils#readme",
"dependencies": {
"chalk": "^2.1.0",
"clear": "^0.0.1",
"copyfiles": "^1.2.0",
"cross-spawn": "^5.1.0",
"figlet": "^1.2.0",
"handlebars": "^4.0.10",
"inquirer": "^3.2.1",
"pkg-up": "^2.0.0",
"shelljs": "^0.7.8"
},
"devDependencies": {
"@types/chalk": "^0.4.31",
"@types/handlebars": "^4.0.35",
"@types/inquirer": "^0.0.35",
"@types/lodash": "^4.14.72",
"@types/minimist": "^1.2.0",
"@types/shelljs": "^0.7.4",
"typescript": "^2.4.2"
}
}