-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.37 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
{
"name": "cinementor",
"description": "CineMentor is an Open Source project developed with Next.js, React, Redux, styled-components. It's a Movie and TV Show Catalogue based on The Movie Database API",
"author": "Adriano Tedesco",
"engines": {
"node": "18.x"
},
"scripts": {
"dev": "nodemon server/index.js",
"build": "next build",
"heroku-postbuild": "next build",
"start": "NODE_ENV=production node server/index.js"
},
"dependencies": {
"@zeit/next-css": "^1.0.1",
"cross-env": "^5.2.0",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"helmet": "^3.15.0",
"isomorphic-unfetch": "^3.0.0",
"next": "^7.0.2",
"nprogress": "^0.2.0",
"react": "^16.6.3",
"react-autosuggest": "^9.4.2",
"react-dom": "^16.6.3",
"react-inlinesvg": "^0.8.4",
"react-lazy-hero": "^2.0.0",
"react-redux": "^6.0.0",
"react-scroll": "^1.7.10",
"react-slick": "^0.23.2",
"react-transition-group": "^1.2.1",
"react-youtube": "^7.9.0",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"slick-carousel": "^1.8.1",
"styled-components": "^4.1.3"
},
"devDependencies": {
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-styled-components": "^1.10.0",
"file-loader": "^2.0.0",
"nodemon": "^1.18.9",
"opn-cli": "^4.0.0",
"url-loader": "^1.1.2"
}
}