-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 1.79 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
{
"name": "@yocdev/tarocodegen",
"version": "1.1.14",
"author": "[email protected]",
"license": "MIT",
"bin": {
"tarocodegen": "dist/cli.js"
},
"engines": {
"node": ">=10"
},
"homepage": "https://github.com/yocdev/tarocodegen#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/yocdev/tarocodegen.git"
},
"bugs": {
"url": "https://github.com/yocdev/tarocodegen/issues"
},
"scripts": {
"dev": "cross-env NODE_ENV=\"dev\" gulp && dist/cli.js",
"build": "cross-env NODE_ENV=\"prod\" gulp",
"test": "xo && ava",
"tarocodegen": "tarocodegen"
},
"files": [
"dist"
],
"dependencies": {
"@svgr/core": "^5.5.0",
"@svgr/plugin-jsx": "^5.5.0",
"@svgr/plugin-prettier": "^5.5.0",
"@svgr/plugin-svgo": "^5.5.0",
"@types/lodash": "^4.14.168",
"@types/string-hash": "^1.1.1",
"ajv": "^7.2.3",
"glob": "^7.1.7",
"glob-promise": "^4.2.0",
"handlebars": "^4.7.7",
"ink": "^3.0.8",
"ink-select-input": "^4.2.0",
"ink-spinner": "^4.0.1",
"lodash": "^4.17.21",
"meow": "^9.0.0",
"prettier": "^2.2.1",
"rd": "^2.0.1",
"react": "^17.0.2",
"string-hash": "^1.1.3"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@sindresorhus/tsconfig": "^0.9.0",
"@types/react": "^17.0.3",
"ava": "^3.15.0",
"chalk": "^4.1.0",
"cross-env": "^7.0.3",
"eslint-config-xo-react": "^0.24.0",
"eslint-plugin-react": "^7.23.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gulp": "^4.0.2",
"gulp-replace": "^1.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"ink-testing-library": "^2.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"xo": "^0.38.2"
},
"ava": {
"typescript": {
"extensions": [
"tsx"
],
"rewritePaths": {
"source/": "dist/"
}
}
},
"xo": {
"extends": "xo-react",
"rules": {
"react/prop-types": "off"
}
}
}