This repository has been archived by the owner on Feb 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
92 lines (92 loc) · 2.62 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
{
"name": "zhihu-daily-reader",
"description": "Reader for Zhihu-Daily.",
"version": "1.3.1",
"author": {
"name": "nonoroazoro",
"email": "[email protected]"
},
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/nonoroazoro/Zhihu-Daily-Reader"
},
"homepage": "https://github.com/nonoroazoro/Zhihu-Daily-Reader",
"bugs": {
"url": "https://github.com/nonoroazoro/Zhihu-Daily-Reader/issues"
},
"keywords": [
"zhihu",
"daily",
"reader"
],
"scripts": {
"start": "cross-env NODE_ENV=production node ./bin/www",
"dev": "cross-env NODE_ENV=development node ./bin/www",
"startdb": "mkdir db | mongod --dbpath ./db",
"build:dev": "cross-env NODE_ENV=development webpack --config webpack.dev.config.js --progress",
"build:prod": "cross-env NODE_ENV=production webpack --config webpack.prod.config.js --progress",
"test": "mocha"
},
"dependencies": {
"async": "^2.1.5",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.17.1",
"bunyan": "^1.8.8",
"cheerio": "^0.22.0",
"compression": "^1.6.2",
"config": "^1.25.1",
"cross-env": "^3.2.3",
"express": "^4.15.2",
"express-session": "^1.15.1",
"fs-extra": "^2.0.0",
"helmet": "^3.4.1",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"mongoose": "^4.8.6",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pug": "^2.0.0-beta6",
"request": "^2.80.0",
"serve-favicon": "^2.4.1",
"session-file-store": "^1.0.0"
},
"devDependencies": {
"assets-webpack-plugin": "^3.5.1",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.4.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"bootstrap": "^3.3.7",
"chalk": "^1.1.3",
"classnames": "^2.2.5",
"clean-webpack-plugin": "^0.1.15",
"css-loader": "^0.26.2",
"eslint": "^3.17.1",
"eslint-config-zoro": "^1.2.9",
"eslint-loader": "^1.6.3",
"eslint-plugin-react": "^6.10.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.10.1",
"jquery": "^3.1.1",
"less": "^2.7.2",
"less-loader": "^3.0.0",
"mocha": "^3.2.0",
"morgan": "^1.8.1",
"mousetrap": "^1.6.0",
"react": "^15.4.2",
"react-addons-update": "^15.4.2",
"react-dom": "^15.4.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-router": "^3.0.2",
"should": "^11.2.0",
"style-loader": "^0.13.2",
"url-loader": "^0.5.8",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.17.1"
}
}