-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
55 lines (55 loc) · 1.71 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
{
"name": "cafecito",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server.js",
"build": "next build",
"start": "cross-env NODE_ENV=production node server.js",
"lint": "eslint \"./**/*.js\"",
"pretty:stage": "pretty-quick --stage"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run pretty:stage"
}
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-brands-svg-icons": "^5.13.0",
"@fortawesome/free-regular-svg-icons": "^5.13.0",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"dayjs": "^1.8.24",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mercadopago": "^1.3.1",
"mobile-detect": "^1.4.4",
"mongoose": "^5.9.9",
"next": "^9.3.5",
"next-routes": "^1.4.2",
"node-html-to-image": "^1.2.0",
"node-sass": "^4.13.1",
"nodemon": "^2.0.3",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-twitter-widgets": "^1.7.1",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.5",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1"
}
}