-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.86 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
{
"name": "react-hot-loader-codemod",
"version": "1.0.0",
"main": "src/index.ts",
"author": "Sibelius Seraphini <[email protected]> (https://github.com/sibelius)",
"license": "MIT",
"dependencies": {
"@types/prettier": "^1.16.0",
"diacritics": "^1.3.0",
"find": "^0.2.9",
"graceful-fs": "^4.1.15",
"jscodeshift-imports": "^1.1.0",
"prettier": "^1.16.4",
"shelljs": "^0.8.3",
"slugify": "^1.3.4",
"yargs": "^12.0.5"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-async-generator-functions": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.0.0",
"@babel/plugin-transform-flow-strip-types": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"@types/babel__core": "^7.0.4",
"@types/babel__generator": "^7.0.1",
"@types/babel__template": "^7.0.1",
"@types/babel__traverse": "^7.0.5",
"@types/diacritics": "^1.3.1",
"@types/find": "^0.2.1",
"@types/graceful-fs": "^4.1.2",
"@types/jest": "^24.0.0",
"@types/jscodeshift": "^0.6.0",
"@types/react": "^16.8.2",
"@types/shelljs": "^0.8.2",
"@types/yargs": "^12.0.8",
"babel-jest": "^24.1.0",
"jest": "^24.1.0",
"jscodeshift": "^0.6.3"
},
"scripts": {
"b": "babel-node --extensions \".es6,.js,.es,.jsx,.mjs,.ts,.tsx\"",
"start": "yarn b src/index.ts",
"fixtures": "yarn start --src=fixtures",
"test": "jest"
}
}