-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
85 lines (85 loc) · 2.2 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "manabu_client",
"description": "Manabu is a gamified e-learning platform",
"version": "0.1.0",
"author": "Gonzalo Rascon",
"repository": {
"type": "git",
"url": "https://github.com/gonzarascon/manabu"
},
"license": "GPL-3.0",
"scripts": {
"dev": "nodemon server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js"
},
"dependencies": {
"@zeit/next-css": "^1.0.1",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"express": "^4.17.0",
"grommet": "^2.7.8",
"grommet-icons": "^4.3.0",
"immutable": "^4.0.0-rc.12",
"is-hotkey": "^0.1.6",
"isomorphic-unfetch": "^3.0.0",
"js-cookie": "^2.2.1",
"lodash": "^4.17.15",
"next": "^9.1.0",
"next-auth": "^1.12.1",
"next-compose-plugins": "^2.2.0",
"next-cookies": "^1.1.3",
"next-fonts": "^0.19.0",
"nextjs-sitemap-generator": "^0.3.2",
"node-fetch": "^2.6.0",
"nodemon": "^1.19.3",
"path": "^0.12.7",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-avatar": "^3.7.0",
"react-dom": "^16.10.2",
"react-loading-skeleton": "^1.1.2",
"react-slick": "^0.25.2",
"sitemap": "^5.1.0",
"slate": "^0.47.8",
"slate-react": "^0.22.9",
"slick-carousel": "^1.8.1",
"styled-components": "^4.4.0",
"unfetch": "^4.1.0",
"validator": "^12.1.0",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-styled-components": "^1.10.6",
"babel-preset-airbnb": "^3.2.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.14.3",
"husky": "^3.0.8",
"lint-staged": "^9.4.1",
"prettier": "^1.17.1",
"pretty-quick": "^1.11.1",
"url-loader": "^2.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,jsx,html,json}": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": "react-app"
}
}