-
Notifications
You must be signed in to change notification settings - Fork 509
/
Copy pathpackage.json
107 lines (107 loc) · 2.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "tsdx",
"version": "0.7.2",
"author": "Jared Palmer <[email protected]>",
"description": "Zero-config TypeScript package development",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jaredpalmer/tsdx.git"
},
"keywords": [
"react",
"typescript",
"bundle",
"rollup"
],
"bugs": {
"url": "https://github.com/jaredpalmer/tsdx/issues"
},
"bin": {
"tsdx": "./dist/index.js"
},
"scripts": {
"prepare": "tsc -p tsconfig.json",
"build": "tsc -p tsconfig.json",
"test": "jest --config ./test/jest.config.json"
},
"files": [
"dist",
"templates"
],
"dependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"ansi-escapes": "^3.2.0",
"asyncro": "^3.0.0",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-transform-async-to-promises": "^0.8.11",
"babel-plugin-transform-rename-import": "^2.3.0",
"camelcase": "^5.0.0",
"chalk": "^2.4.2",
"cross-env": "5.2.0",
"enquirer": "^2.3.0",
"execa": "^1.0.0",
"fs-extra": "^8.0.1",
"jest": "^24.8.0",
"jest-watch-typeahead": "^0.3.1",
"jpjs": "^1.2.1",
"mkdirp": "^0.5.1",
"ora": "^3.4.0",
"progress-estimator": "^0.2.2",
"rollup": "^1.12.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-size-snapshot": "^0.8.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-typescript2": "^0.21.1",
"sade": "^1.4.2",
"tiny-glob": "^0.2.6",
"ts-jest": "^24.0.2",
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/ansi-escapes": "^4.0.0",
"@types/camelcase": "^5.2.0",
"@types/execa": "^0.9.0",
"@types/fs-extra": "^7.0.0",
"@types/jest": "^24.0.15",
"@types/mkdirp": "^0.5.2",
"@types/ms": "^0.7.30",
"@types/node": "^12.0.2",
"@types/ora": "^3.2.0",
"@types/rollup-plugin-json": "^3.0.2",
"@types/rollup-plugin-sourcemaps": "^0.4.2",
"husky": "^2.3.0",
"prettier": "^1.17.1",
"pretty-quick": "^1.10.0",
"ps-tree": "^1.2.0",
"shelljs": "^0.8.3",
"tslint": "^5.16.0",
"tslint-config-palmerhq": "^1.0.2",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.0.0",
"typescript": "^3.4.5"
},
"peerDependencies": {
"typescript": "3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
}
}