-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.5 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "copycast",
"version": "5.2.4",
"description": "Live remote copy-pasta explorer for training sessions ",
"bin": {
"copycast": "bin/copycast.js"
},
"scripts": {
"preinstall": "node bin/check-node.js",
"assets": "npm-run-all octicons hl hl-list",
"prepublish": "npm run build",
"prebuild": "npm run assets",
"build": "browserify client/index.js -t babelify -t uglifyify | uglifyjs -o client/bundle.js",
"hl": "cpx 'node_modules/highlight.js/styles/*.css' client/hl-themes",
"hl-list": "node bin/hl-list.js",
"lint": "eslint server && eslint client --ignore-path .gitignore",
"octicons": "cpx 'node_modules/octicons/octicons/*.*' client/octicons",
"start": "node ./bin/copycast.js",
"prewatch:client": "npm run assets",
"watch:client": "watchify client/index.js --debug -o client/bundle.js -t babelify",
"watch:server": "nodemon -i client ./bin/copycast.js",
"watch": "npm-run-all -p watch:*"
},
"files": [
"bin",
"client/bundle.js",
"client/index.css",
"client/index.html",
"client/hl-themes",
"client/octicons",
"client/favicon.ico",
"server"
],
"repository": {
"type": "git",
"url": "git+https://github.com/byteclubfr/copycast.git"
},
"bugs": {
"url": "https://github.com/byteclubfr/copycast/issues"
},
"homepage": "https://github.com/byteclubfr/copycast#readme",
"author": "Delapouite <[email protected]> (http://delapouite.com)",
"license": "ISC",
"dependencies": {
"chokidar": "^1.4.3",
"compression": "^1.7.1",
"debug": "^3.1.0",
"finalhandler": "^1.1.0",
"git-http-backend": "^1.0.0",
"localtunnel": "^1.8.1",
"parse-domain": "^1.0.0",
"serve-static": "^1.13.1",
"socket.io": "^2.0.4",
"yargs": "^10.0.3",
"yazl": "^2.4.1"
},
"devDependencies": {
"@cycle/core": "^6.0.3",
"@cycle/dom": "^9.1.0",
"@cycle/isolate": "^1.2.0",
"@cycle/storage": "^2.0.3",
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babelify": "^8.0.0",
"browserify": "^14.5.0",
"clipboard": "^1.5.9",
"cpx": "^1.3.1",
"eslint": "^4.10.0",
"highlight.js": "^9.2.0",
"html-to-vdom": "^0.7.0",
"lodash.last": "^3.0.0",
"mime-types": "^2.1.10",
"nodemon": "^1.12.1",
"npm-run-all": "^4.1.2",
"octicons": "^7.0.1",
"rx": "^4.1.0",
"showdown": "^1.3.0",
"socket.io-client": "^2.0.4",
"uglify-js": "^3.1.8",
"uglifyify": "^4.0.4",
"virtual-dom": "^2.1.1",
"watchify": "^3.7.0"
}
}