-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.8 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
{
"name": "side-chat",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-js": "browserify ./js/index.js -o ./js/bundle.js -t [ babelify --presets [ es2015 react ] ]",
"watch-js": "watchify ./js/index.js -o ./js/bundle.js -t [ babelify --presets [ es2015 react ] ]",
"build-min": "browserify ./js/index.js -t [ babelify --presets [ es2015 react ] ] | uglifyjs -mc > ./js/bundle.min.js",
"start": "npm run build-js & npm run watch-js",
"dist-clean": "node -e \"require('shelljs/global'); rm('-rf','dist/'); mkdir('dist')\"",
"predist-build": "npm run build-min",
"dist-build": "node ./tools/distCopy.js && node ./tools/distRename.js",
"dist": "npm run dist-clean && npm run dist-build",
"preopen-dist": "npm run dist",
"open-dist": "node -e \"const spawn=require('child_process').spawn; spawn('node',['./tools/launchChromeExtension.js'],{detached: true, stdio: 'ignore'}).unref();\""
},
"browserify": {
"transform": [
"babelify"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"babel": "6.5.2",
"express": "4.13.4",
"react": "0.14.8",
"react-dom": "0.14.8",
"socket.io": "1.4.5"
},
"devDependencies": {
"babel-core": "6.7.4",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babelify": "7.2.0",
"browserify": "13.0.0",
"chalk": "1.1.3",
"chrome-launch": "1.1.4",
"shelljs": "0.6.0",
"uglifyjs": "2.4.10",
"watchify": "3.7.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aallen-dev/sidenote-client.git"
},
"bugs": {
"url": "https://github.com/aallen-dev/sidenote-client/issues"
},
"homepage": "https://github.com/aallen-dev/sidenote-client#readme"
}