-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 943 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 943 Bytes
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
{
"name": "chattrbox",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"dev": "nodemon index.js",
"build": "browserify -d app/scripts/src/main.js -o app/scripts/dist/main.js",
"watch": "watchify -v -d app/scripts/src/main.js -o app/scripts/dist/main.js"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
],
"sourceMap": true
}
]
]
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.3.0",
"crypto-js": "^3.1.9-1",
"jquery": "^3.2.1",
"moment": "^2.18.1",
"nodemon": "^1.11.0",
"watchify": "^3.9.0"
},
"dependencies": {
"ws": "^2.2.3"
}
}