-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.04 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.04 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
{
"name": "simple_chat",
"version": "1.0.0",
"description": "JavaScript chat app",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "browser-sync start --server --files \"**\"",
"start": "webpack-dev-server",
"build:messages": "pug --client --name=messagesTmpl components/messages/messages.tmpl.pug",
"build:msgForm": "pug --client --name=msgFormTmpl components/msg-form/msg-form.tmpl.pug",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/winlx/Simple_Chat.git"
},
"author": "Aleksei Iakovets",
"license": "ISC",
"bugs": {
"url": "https://github.com/winlx/Simple_Chat/issues"
},
"homepage": "https://github.com/winlx/Simple_Chat#readme",
"devDependencies": {
"browser-sync": "^2.18.8",
"css-loader": "^0.28.2",
"extract-text-webpack-plugin": "^2.1.0",
"pug": "^2.0.0-rc.1",
"pug-cli": "^1.0.0-alpha6",
"pug-loader": "^2.3.0",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5"
}
}