-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.17 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": "openshare.social",
"private": true,
"version": "1.0.0",
"description": "website for openshare.social",
"main": "index.js",
"browser": {
"level": "level-browserify"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"scripts": {
"start": "npm run watch",
"watch:js": "watchify js/index.js -o dist/bundle.js -dv",
"watch:css": "node-sass -w scss/main.scss dist/bundle.css",
"watch": "npm run watch:js & npm run watch:css",
"build:js": "browserify js/index.js -g uglifyify | uglifyjs -cm > dist/bundle.js",
"build:css": "node-sass scss/main.scss dist/bundle.css",
"build": "npm run build:js & npm run build:css",
"dev": "npm run watch",
"production": "npm run build & npm start"
},
"keywords": [
"openshare.social"
],
"author": "Digital Surgeons",
"license": "MIT",
"devDependencies": {
"babel-preset-es2015": "^6.9.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"node-sass": "^3.8.0",
"standard-format": "^2.2.1",
"tape": "^4.6.0",
"uglify-js": "^2.6.3",
"uglifyify": "^3.0.2",
"watchify": "^3.7.0"
},
"dependencies": {
"body": "^5.1.0",
"concat-stream": "^1.5.1",
"cookie": "^0.3.1",
"ecstatic": "^2.1.0",
"has": "^1.0.1",
"level": "^1.4.0",
"node-fetch": "^1.5.3",
"node-twitter-api": "^1.7.4",
"openshare": "^1.4.1",
"oppressor": "0.0.1",
"patterns": "^1.0.2",
"rainbow-code": "^2.1.0",
"redis": "^2.6.2",
"slack-node": "^0.2.0",
"st": "^1.1.0",
"through": "^2.3.8",
"through2": "^2.0.1",
"trumpet": "^1.7.2",
"twitter-text": "^1.14.0",
"xhr": "^2.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenShare/openshare.social.git"
},
"bugs": {
"url": "https://github.com/OpenShare/openshare.social/issues"
},
"homepage": "https://github.com/OpenShare/openshare.social#readme"
}