-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.49 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
{
"name": "reddit_image_browser",
"version": "1.0.0",
"description": "A small UI client to browse images posted on any subreddit",
"scripts": {
"start": "NODE_ENV=production ts-node src/server/index.ts",
"local": "NODE_ENV=debug ts-node src/server/index.ts",
"deploy": "git push heroku master"
},
"engines": {
"node": "16.1.0"
},
"author": "luispcosta",
"license": "MIT",
"dependencies": {
"@babel/preset-env": "^7.14.4",
"@reduxjs/toolkit": "^1.6.1",
"axios": "^0.21.1",
"babel-loader": "^8.2.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"nodemon": "^2.0.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"reselect": "^4.0.0",
"webpack": "^5.38.1",
"webpack-dev-middleware": "^3.7.3",
"ts-node": "^10.0.0",
"typescript": "^3.7.4",
"@babel/core": "^7.14.3",
"@babel/eslint-parser": "^7.14.4",
"@babel/polyfill": "^7.12.1",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.7.7",
"@types/node": "^12.12.5",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.3",
"@types/react-router-dom": "^5.1.7"
},
"devDependencies": {
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
}
}