-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.06 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
{
"name": "babel-eslint-typescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"transpile": "babel -d dist -x .js,.jsx,.ts,.tsx ./src/",
"lint": "eslint ./src --ext .js,.tsx"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/react": "^16.8.14",
"babel-eslint": "11.0.0-beta.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-typescript": "^0.14.0",
"pluggable-babel-eslint": "^0.3.0",
"prettier": "^1.17.0",
"typescript": "^3.4.4"
},
"dependencies": {
"react": "^16.8.6"
}
}