-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 900 Bytes
/
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
{
"name": "frontend-playground",
"version": "0.0.1",
"description": "Reservamos Frontend (React + SASS) Playground",
"main": "index.js",
"author": "Reservamos Hackers",
"repository": "https://github.com/reservamos/frontend-playground",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"dependencies": {
"next": "^11.1.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^1.7.0",
"node-sass": "^4.13.1",
"prettier": "^2.3.2",
"prettier-stylelint": "^0.4.2",
"stylelint": "^13.0.0",
"stylelint-config-standard": "^19.0.0"
}
}