forked from kentcdodds/kcd-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.58 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@inthepocket/itp-react-scripts",
"version": "0.0.0-semantically-released",
"description": "CLI for common scripts for my projects",
"engines": {
"node": ">= 8",
"npm": ">= 5.2"
},
"bin": {
"itp-react-scripts": "dist/index.js"
},
"scripts": {
"add-contributor": "node src contributors add",
"test": "node src test",
"test:update": "node src test --updateSnapshot",
"build": "node src build",
"lint": "node src lint",
"format": "node src format",
"validate": "node src validate",
"precommit": "node src precommit",
"commit": "npx git-cz@1.7.1",
"postinstall": "./postinstall.sh"
},
"files": [
"dist",
"babel.js",
"eslint.js",
"config.js",
"prettier.js",
"jest.js",
"postinstall.sh"
],
"keywords": [],
"author": "In The Pocket <hello@inthepocket.com> (http://inthepocket.com)",
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.1.2",
"all-contributors-cli": "^5.0.0",
"arrify": "^1.0.1",
"babel-cli": "^7.0.0-0",
"babel-core": "^7.0.0-0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.4.2",
"babel-plugin-macros": "^2.3.0",
"babel-plugin-minify-dead-code-elimination": "^0.4.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-inline-environment-variables": "^0.4.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"browserslist": "^4.0.0",
"concurrently": "^3.5.1",
"cross-env": "^5.1.4",
"cross-spawn": "^6.0.5",
"doctoc": "^1.3.1",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-itp-base": "^1.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.22.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-native": "^3.2.1",
"glob": "^7.1.2",
"husky": "^1.1.2",
"is-ci": "^1.1.0",
"jest": "^23.6.0",
"lint-staged": "^7.0.4",
"lodash.camelcase": "^4.3.0",
"lodash.has": "^4.5.2",
"lodash.omit": "^4.5.0",
"mkdirp": "^0.5.1",
"prettier": "^1.11.1",
"read-pkg-up": "^4.0.0",
"resolve": "^1.6.0",
"rimraf": "^2.6.2",
"rollup": "^0.65.0",
"rollup-plugin-babel": "^4.0.0",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.2.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-size-snapshot": "^0.6.1",
"rollup-plugin-terser": "^1.0.1",
"semver": "^5.5.1",
"typescript-eslint-parser": "^20.0.0",
"which": "^1.3.0",
"yargs-parser": "^10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/inthepocket/itp-react-scripts.git"
},
"bugs": {
"url": "https://github.com/inthepocket/itp-react-scripts/issues"
},
"homepage": "https://github.com/inthepocket/itp-react-scripts#readme",
"devDependencies": {
"jest-in-case": "^1.0.2",
"slash": "^2.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "npx cz-conventional-changelog@2.1.0"
}
}
}