-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.58 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
{
"name": "graphql-chat",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node backend/index.js",
"build": "webpack --config config/webpack.config.js",
"watch": "webpack --config config/webpack.config.js&& nodemon backend/index.js"
},
"dependencies": {
"@apollo/client": "^3.3.16",
"@babel/core": "^7.13.16",
"@babel/plugin-proposal-decorators": "^7.13.15",
"@babel/plugin-transform-runtime": "^7.13.15",
"@reduxjs/toolkit": "^1.5.1",
"apollo-server-express": "^2.23.0",
"babel-loader": "^8.2.2",
"css-hot-loader": "^1.4.4",
"css-loader": "^5.2.4",
"express": "^4.17.1",
"graphql": "^15.5.0",
"graphql-tools": "^7.0.4",
"multer": "^1.4.2",
"nedb": "^1.8.0",
"postcss-loader": "^5.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.13.0",
"react-redux": "^7.2.3",
"react-router-dom": "^5.2.0",
"stylus": "^0.54.8",
"stylus-loader": "^5.0.0",
"subscriptions-transport-ws": "^0.9.18",
"webpack": "^5.35.0",
"webpack-dev-server": "^3.11.2",
"webpack-hot-middleware": "^2.25.0"
},
"devDependencies": {
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@hot-loader/react-dom": "^17.0.1",
"autoprefixer": "^10.2.5",
"cypress": "^7.3.0",
"html-webpack-plugin": "^5.3.1",
"localtunnel": "^2.0.1",
"mini-css-extract-plugin": "^1.5.0",
"nodemon": "^2.0.7",
"postcss": "^8.2.10",
"typescript": "^4.2.4",
"webpack-cli": "^4.7.0"
}
}