-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.41 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": "codear-site",
"version": "0.0.1",
"description": "Sitio Institucional de CoDeAr ",
"main": "index.js",
"repository": "[email protected]:WebConfTech/codear-site.git",
"author": "Agustin Carrasco <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@codear/lilac": "^2.1.0",
"axios": "^0.21.1",
"bowser": "^2.10.0",
"next": "^10.0.0",
"next-ga": "^2.3.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"react-pageflip": "^1.0.0",
"react-swipeable": "^5.5.1",
"styled-components": "^5.1.1",
"swr": "^0.3.0"
},
"devDependencies": {
"@webcomponents/webcomponentsjs": "^2.4.4",
"babel-plugin-styled-components": "^1.10.7",
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^4.3.0",
"lint-staged": "^10.2.11",
"prettier": "2.1.2",
"prop-types": "^15.7.2",
"typescript-styled-plugin": "^0.15.0",
"webpack": "^4.44.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint --cache --fix"
]
}
}