forked from idoco/intergram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.81 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
55
56
57
58
59
60
{
"name": "intergram",
"license": "MPL-2.0",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/idoco/intergram"
},
"description": "A live chat widget linked to your telegram messenger",
"scripts": {
"start": "node server.js",
"postinstall": "npm run build",
"dev": "webpack --mode development",
"devopen": "webpack --mode development & start http://localhost:3000/demo.html",
"build": "webpack --mode production",
"test": "npm run -s lint",
"lint": "eslint src",
"css": "shx cp -r static/css dist"
},
"author": "Ido Cohen (https://github.com/idoco)",
"contibutors": [
"Aslauris (https://github.com/aslauris)",
"Lucas Spohn <[email protected]> (https://github.com/lspohn)"
],
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.2",
"copy-webpack-plugin": "^4.5.2",
"eslint": "^5.5.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-preact": "^1.1.6",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"webpack": "^4.17.1",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.7"
},
"dependencies": {
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"cors": "^2.8.4",
"dateformat": "^3.0.3",
"express": "4.16.3",
"faker": "^4.1.0",
"preact": "^8.3.1",
"request": "^2.88.0",
"shx": "^0.3.2",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"store2": "^2.7.0"
}
}