forked from Team-Wobbegong/Chationary
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.55 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.55 KB
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
86
{
"name": "ChatLingo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"proxy": "http://localhost:3000",
"secure": false,
"scripts": {
"start": "cross-env NODE_ENV=production webpack serve --no-cache",
"server": "cross-env nodemon --inspect server/server.js",
"dev": "cross-env NODE_ENV=development concurrently \"nodemon server/server.js\" \"npm run start\"",
"build": "cross-env NODE_ENV=production webpack",
"lint": "cross-env eslint",
"clean": "cross-env rm dist/main.js",
"test": "cross-env NODE_ENV=testing jest --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChatLingoDevs/ChatLingo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ChatLingoDevs/ChatLingo/issues"
},
"homepage": "https://github.com/ChatLingoDevs/ChatLingo#readme",
"jest": {
"globalSetup": "./jest-setup.js",
"globalTeardown": "./jest-teardown.js"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-async-to-generator": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.0",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.3.3",
"node-sass": "^5.0.0",
"nodemon": "^2.0.7",
"postcss-loader": "^4.1.0",
"postcss-preset-env": "^6.7.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"supertest": "^6.0.1",
"webpack": "^5.13.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"concurrently": "^5.3.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"emoji-mart": "^3.0.0",
"express": "^4.17.1",
"ibm-watson": "^6.0.2",
"jquery": "^3.5.1",
"jsonwebtoken": "^8.5.1",
"node-fetch": "^2.6.1",
"pg": "^8.5.1",
"postgresql": "0.0.1",
"process": "^0.11.10",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-feather": "^2.0.9",
"react-router-dom": "^5.2.0",
"react-scroll-to-bottom": "^4.1.0",
"socket.io": "^3.0.4",
"socket.io-client": "^3.0.4",
"uuid": "^8.3.2"
}
}