-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.65 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.65 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
87
88
89
90
91
92
{
"name": "challenge-nicholas-boutboul",
"version": "1.0.0",
"author": "Raid55",
"license": "ISC",
"description": "A chat app that also highlights stock",
"main": "index.js",
"scripts": {
"start": "node index.js",
"bundle": "webpack --mode production",
"devClient": "webpack --mode development --watch",
"dev": "concurrently \"npm run start\" \"npm run devClient\"",
"tests": "npm run test-server && npm run test-client",
"test-client": " mocha --require @babel/register --require ignore-styles --require tests/setup.js -c -R spec tests/client.test.js",
"test-server": "mocha -c -R spec tests/api.test.js",
"pk": "kill $(lsof -t -i :3000)"
},
"nodemonConfig": {
"verbose": false,
"colours": true,
"ignore": [
"client/",
"package.json",
"package-lock.json",
"webpack.config.js",
".babelrc",
"README.md",
".gitignore"
]
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"chalk": "^2.4.1",
"express": "^4.16.3",
"jsonwebtoken": "^8.2.1",
"mongoose": "^5.1.2",
"morgan": "^1.9.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"react": "^16.4.0",
"react-chat-ui": "^0.3.2",
"react-dom": "^16.4.0",
"react-emoji-render": "^0.4.4",
"react-router-dom": "^4.2.2",
"react-spinners": "^0.3.2",
"react-tooltip": "^3.6.1",
"react-user-avatar": "^1.10.0",
"sillyname": "^0.1.0",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"uuid": "^3.2.1",
"winston": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.49",
"@babel/core": "^7.0.0-beta.49",
"@babel/preset-env": "^7.0.0-beta.49",
"@babel/preset-react": "^7.0.0-beta.49",
"@babel/register": "^7.0.0-beta.52",
"@withdouble/eslint-config": "^1.2.7",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^7.1.4",
"babel-plugin-emotion": "^9.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-minify": "^0.4.3",
"chai": "^4.1.2",
"concurrently": "^3.5.1",
"css-loader": "^0.28.11",
"dotenv": "^5.0.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"ignore-styles": "^5.0.1",
"jsdom": "^11.11.0",
"localStorage": "^1.0.3",
"mini-css-extract-plugin": "^0.4.0",
"mocha": "^5.2.0",
"nock": "^9.4.1",
"nodemon": "^1.17.5",
"sinon": "^6.1.3",
"style-loader": "^0.21.0",
"supertest": "^3.1.0",
"webpack": "^4.9.1",
"webpack-cli": "^2.1.4"
},
"repository": {
"type": "git",
"url": "git://github.com/withDouble/challenge-nicholas-boutboul"
}
}