forked from freeCodeCamp/search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.98 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
{
"name": "freecodecamp-elasticsearch",
"version": "0.0.1",
"description": "A search engine for all things freeCodeCamp",
"main": "index.js",
"scripts": {
"dev": "nodemon server",
"init": "node init",
"get-test": "babel getTest.js",
"build:server": "npx babel server --out-dir lib --ignore spec.js,test.js",
"test-server": "mocha --require babel-polyfill --compilers js:babel-register -R spec ./server/**/*test.js",
"test-server:watch": "mocha --require babel-polyfill --compilers js:babel-register -R spec ./server/**/*test.js --watch",
"test": "npm run test-server",
"test:watch": "npm run test-server:watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bouncey/freeCodeCamp-Elasticsearch.git"
},
"author": "Stuart Taylor",
"license": "ISC",
"bugs": {
"url": "https://github.com/Bouncey/freeCodeCamp-Elasticsearch/issues"
},
"homepage": "https://github.com/Bouncey/freeCodeCamp-Elasticsearch#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"body-parser": "^1.17.2",
"chai": "^4.1.2",
"chalk": "^1.1.3",
"cors": "^2.8.4",
"date-fns": "^1.29.0",
"dotenv": "^4.0.0",
"elasticsearch": "^13.0.1",
"express": "^4.15.3",
"gray-matter": "^3.1.1",
"helmet": "^3.6.1",
"mocha": "^3.5.3",
"morgan": "^1.8.2",
"node-svn-ultimate": "^1.0.4",
"nodemon": "^1.12.1",
"pmx": "^1.2.0",
"promisify-event": "^1.0.0",
"proxyquire": "^1.8.0",
"pug": "^2.0.0-rc.2",
"request": "^2.81.0",
"rss-parser": "^2.9.0",
"rx": "^4.1.0",
"secure-compare": "^3.0.1",
"sinon": "^4.0.0",
"string-hash": "^1.1.3",
"supertest": "^3.0.0",
"textract": "^2.1.2"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"eslint": "^3.19.0"
}
}