-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2 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
{
"name": "topworkshop-chat",
"version": "1.0.0",
"description": "A \"complex\" application to familiarize with the node.js environment",
"main": "index.js",
"scripts": {
"eslint": "eslint .",
"webpack": "webpack",
"heroku-postbuild": "webpack",
"start": "node index",
"pretest": "eslint .",
"test": "jest",
"posttest": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zweer/TOPWorkshop-Chat.git"
},
"engines": {
"node": "8.9.4"
},
"keywords": [
"node.js",
"chat",
"websocket",
"express"
],
"author": "Niccolò Olivieri <niccolo@olivieriachille.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Zweer/TOPWorkshop-Chat/issues"
},
"homepage": "https://github.com/Zweer/TOPWorkshop-Chat#readme",
"dependencies": {
"body-parser": "^1.18.2",
"bootstrap": "^4.0.0-beta",
"config": "^1.26.2",
"ejs": "^2.5.7",
"express": "^4.16.0",
"jquery": "^3.2.1",
"moment": "^2.18.1",
"morgan": "^1.9.0",
"pg": "^7.4.1",
"pg-hstore": "^2.3.2",
"popper.js": "^1.12.5",
"sequelize": "^4.12.0",
"socket.io": "^2.0.3",
"socket.io-client": "^2.0.3",
"winston": "^2.4.0"
},
"devDependencies": {
"autoprefixer": "^7.1.4",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.28.7",
"cssnano": "^3.10.0",
"eslint": "^4.7.2",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.1",
"jest": "^22.3.0",
"modernizr-webpack-plugin": "^1.0.6",
"node-sass": "^4.5.3",
"postcss-flexbugs-fixes": "^3.2.0",
"postcss-loader": "^2.0.6",
"sass-loader": "^6.0.6",
"sqlite3": "^3.1.13",
"style-loader": "^0.19.0",
"supertest": "^3.0.0",
"url-loader": "^0.6.2",
"webpack": "^3.6.0",
"webpack-cleanup-plugin": "^0.5.1"
}
}