-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
49 lines (49 loc) · 1.45 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
{
"name": "ac-react-reddit",
"version": "1.0.0",
"description": "A Reddit client built with React.js, next.js and styled-components.",
"main": "server.js",
"author": "Abdullah Musab Ceylan <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "node server.js",
"dev:next": "next",
"build": "export NODE_ENV=production; next build",
"start": "export NODE_ENV=production; node server.js",
"start:next": "next start -p $PORT",
"heroku-postbuild": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abdullahceylan/ac-react-reddit.git"
},
"dependencies": {
"add": "^2.0.6",
"babel-polyfill": "^6.26.0",
"chalk": "^2.4.1",
"date-fns": "^1.29.0",
"express": "^4.16.4",
"lodash": "^4.17.11",
"next": "^7.0.2",
"prop-types": "^15.6.2",
"react": "^16.6.1",
"react-content-loader": "^3.2.0",
"react-dom": "^16.6.1",
"react-icons": "^3.2.2",
"react-markdown": "^4.0.3",
"react-redux": "^5.1.0",
"react-responsive-modal": "^3.5.1",
"react-youtube": "^7.8.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"styled-components": "^4.0.3",
"styled-tools": "^1.6.0"
},
"devDependencies": {
"babel-plugin-inline-react-svg": "^1.0.1",
"babel-plugin-react-element-info": "^1.0.1",
"babel-plugin-styled-components": "^1.8.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"redux-logger": "^3.0.6"
}
}