-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.15 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
{
"name": "babel-plugin-export-everything",
"version": "0.0.1",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-flow": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@khanacademy/eslint-config": "^0.0.5",
"@types/jest": "^25.2.3",
"babel-eslint": "^10.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-flowtype": "^5.1.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"flow-bin": "^0.125.1",
"jest": "^26.0.1",
"jest-enzyme": "^7.1.2",
"jest-mock": "git+https://[email protected]/kevinbarabash/jest-mock.git#57e70db7c66b162fd8ee09855a1f1880be9b3f50",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"dependencies": {
"@babel/template": "^7.8.6"
},
"scripts": {
"flow": "flow",
"lint": "eslint src example",
"test": "jest --clearCache && jest"
}
}