-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
73 lines (73 loc) · 2.27 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
{
"name": "schsrch",
"version": "2.0.0",
"private": true,
"description": "",
"main": "index.js",
"scripts": {
"install": "if [ -e binding.gyp ]; then node-gyp rebuild; fi",
"prepare": "if [ -e webpack.config.js ]; then npm run webpack; fi",
"webpack-dev": "NODE_ENV=development webpack --progress --colors --watch",
"webpack": "NODE_ENV=production webpack --progress; if [ $? -eq 0 ]; then echo OK.; else echo Failed && exit 1.; fi",
"test": "mocha --delay --exit",
"coverage": "node_modules/.bin/istanbul cover -x \"**/dist-server/**\" --report lcovonly node_modules/.bin/_mocha -- --delay --exit -R spec",
"coverage-html": "node_modules/.bin/istanbul cover -x \"**/dist-server/**\" node_modules/.bin/_mocha -- --delay --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/micromaomao/schsrch.git"
},
"author": "Mao Wtm <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/micromaomao/schsrch/issues"
},
"homepage": "https://github.com/micromaomao/schsrch#readme",
"dependencies": {
"bowser": "^1.9.4",
"cheerio": "^1.0.0-rc.2",
"express": "^4.16.4",
"nan": "^2.18.0",
"rbush": "^2.0.2",
"request": "^2.88.0",
"svgo": "^1.1.1",
"pdfjs-dist": "^2.0.943"
},
"peerDependencies": {
"elasticsearch": ">=13.0.0",
"express": ">=4.0.0",
"mongoose": ">=4.0.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"babel-loader": "^8.0.4",
"@babel/plugin-transform-react-jsx": "^7.2.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.2.0",
"base64-js": "^1.3.0",
"css-loader": "^6.8.1",
"elasticsearch": "^15.2.0",
"es6-map": "^0.1.5",
"es6-set": "^0.1.5",
"fetch-polyfill": "^0.8.2",
"file-loader": "^6.2.0",
"fullscreen-api-polyfill": "^1.1.2",
"html-webpack-plugin": "^5.5.3",
"mocha": "^5.2.0",
"mongoose": "^5.4.0",
"pug": "^2.0.3",
"pug-loader": "^2.4.0",
"raw-loader": "^4.0.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"redux": "^4.0.1",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"sharp": "^0.26.1",
"should": "^13.2.3",
"supertest": "^3.3.0",
"transformationstage": "*",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}