-
Notifications
You must be signed in to change notification settings - Fork 129
/
package.json
152 lines (152 loc) · 3.94 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"name": "david-www",
"version": "24.0.1",
"description": "Watching your Node.js dependencies.",
"main": "index.js",
"homepage": "https://github.com/alanshaw/david-www",
"repository": {
"type": "git",
"url": "git://github.com/alanshaw/david-www.git"
},
"bugs": {
"url": "https://github.com/alanshaw/david-www/issues"
},
"keywords": [
"dependency",
"management",
"npm"
],
"author": "Alan Shaw",
"contributors": [
"Oliver Evans",
"XhmikosR"
],
"license": "MIT",
"scripts": {
"start": "node dist/main",
"build": "run-p build:**",
"build:js:server": "cross-env BABEL_ENV=server babel src --out-dir dist",
"build:js:client": "browserify -g [ envify purge ] -g uglifyify src/ui/main.jsx -o public/bundle.js",
"build:css": "node-sass --include-path node_modules src/ui/main.scss public/bundle.css",
"minify": "run-p minify:*",
"minify:js": "uglifyjs public/bundle.js -o public/bundle.js",
"minify:css": "postcss public/bundle.css -u cssnano -o public/bundle.css",
"lint": "standard",
"test": "run-s lint build test:*",
"test:unit": "tape test/*.js",
"watch": "run-p watch:**",
"watch:js:server": "cross-env BABEL_ENV=server babel -w src --out-dir dist",
"watch:js:client": "watchify src/ui/main.jsx -o public/bundle.js -v",
"watch:css": "node-sass --include-path node_modules -w src/ui/main.scss public/bundle.css",
"watch:server": "nodemon --watch dist --watch public -e js,css -x 'npm start'",
"postinstall": "npm run build && npm run minify"
},
"dependencies": {
"async": "^2.0.1",
"babel-cli": "^6.8.0",
"babel-plugin-jsx-strip-ext": "^1.0.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-node6": "^11.0.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.24.1",
"babelify": "^7.3.0",
"boom": "^5.1.0",
"browserify": "^14.4.0",
"cheerio": "^0.22.0",
"compression": "^1.4.1",
"couchwatch": "^0.6.0",
"cross-env": "^5.1.3",
"cssnano": "^3.7.3",
"cycle": "^1.0.3",
"d3": "^3.5.17",
"dateformat": "^2.0.0",
"david": "^12.0.0",
"dep-diff": "^1.0.1",
"envify": "^4.1.0",
"express": "^4.13.4",
"extract": "^1.0.0",
"font-awesome": "^4.6.1",
"github": "^9.2.0",
"github-url": "^1.1.0",
"history": "^3.3.0",
"isomorphic-fetch": "^2.2.1",
"level": "^6.0.1",
"level-session": "^0.3.4",
"merge": "^1.2.0",
"meta-marked": "^0.4.0",
"mkdirp": "^0.5.1",
"moment": "^2.20.1",
"node-sass": "^5.0.0",
"normalize-scss": "^7.0.0",
"npm": "^6.14.9",
"npm-run-all": "^4.0.2",
"nsp-advisories-api": "^2.0.2",
"once": "^1.4.0",
"postcss-cli": "^4.0.0",
"prop-types": "^15.5.10",
"rc": "^1.1.5",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-helmet": "^5.1.3",
"react-modal": "^1.3.0",
"react-redux": "^5.0.5",
"react-router": "^3.0.5",
"react-router-redux": "^4.0.4",
"react-router-scroll": "^0.4.2",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"request": "^2.81.0",
"rimraf": "^2.4.3",
"rss": "^1.1.1",
"semver": "^5.0.1",
"serve-favicon": "^2.2.0",
"uglify-js": "^3.0.13",
"uglifyify": "^4.0.5",
"utils-copy-error": "^1.0.1",
"xml2js": "^0.4.16"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"nodemon": "^1.9.2",
"standard": "^11.0.0",
"tape": "^4.5.1",
"watchify": "^3.7.0"
},
"engines": {
"node": "^6.1.0"
},
"directories": {
"test": "test"
},
"babel": {
"env": {
"server": {
"presets": [
"node6",
"react",
"stage-2"
],
"plugins": [
"jsx-strip-ext"
]
}
}
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"react",
"es2015",
"stage-2"
]
}
]
]
},
"standard": {
"parser": "babel-eslint"
}
}