-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.78 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
{
"name": "@bigbinary/babel-preset-neeto",
"version": "1.0.8",
"description": "A babel preset to transform short code to boilerplate at compile time",
"main": "index.js",
"scripts": {
"test": "jest",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"eslint --fix"
],
"index.js": [
"prettier --write",
"eslint --fix"
],
"package.json": [
"prettier --write",
"eslint --fix"
],
"*.md": [
"prettier --write"
]
},
"keywords": [
"babel",
"neeto"
],
"author": "Amaljith K",
"license": "ISC",
"dependencies": {
"@bigbinary/neeto-cist": "^1.0.4",
"@bigbinary/neeto-commons-frontend": "^2.0.63",
"ramda": "^0.29.0"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/eslint-parser": "7.17.0",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.19.1",
"@babel/preset-env": "7.17.10",
"@babel/preset-react": "7.16.7",
"@bigbinary/eslint-plugin-neeto": "^1.0.30",
"babel-plugin-dynamic-import-node": "2.3.3",
"babel-plugin-macros": "3.1.0",
"babel-plugin-tester": "^11.0.4",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"eslint": "8.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jam3": "0.2.3",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.5.0",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "^8.0.0",
"jest": "^29.5.0",
"lint-staged": "^13.2.0",
"prettier": "^2.8.7"
}
}